Die Imports
In [1]:
from bs4 import BeautifulSoup
import requests
import pandas as pd
from datetime import datetime
Der Code
In [2]:
allPostOfAllYears = []
In [ ]:
year = 2008
month = 3
for index in range(1, 10000):
url = "https://daphnecaruanagalizia.com/" + str(year) + "/" + str(month)
print(url)
response = requests.get(url)
oneMonth = BeautifulSoup(response.text, 'html.parser')
allPosts = oneMonth.find("div", {"class", "archives"})
allPosts = allPosts.findAll("div", {"class": "post"})
allPosts.pop(0)
for post in allPosts:
if(hasattr(post,"find")):
title = post.find("a").text
url = post.find("a")["href"]
date = post.find("span", {"class", "time"}).text
date = date[:-5] + " " + str(year)
date = datetime.strptime(date, '%A, %d %B %Y')
date = str(date.date())
dic = { "title": title, "date": date, "url": url }
print(dic)
allPostOfAllYears.append(dic)
if(month < 12):
month += 1
else:
month = 1
year += 1
if(year == 2017 and month == 11):
break
print(allPostOfAllYears)
https://daphnecaruanagalizia.com/2008/3
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1630hrs/', 'title': "Here is the latest development in the mysterious case of the xiri ta' voti"}
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1200hrs/', 'title': 'Maria l-Maws speaks out'}
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1130hrs/', 'title': 'Maria l-Maws can’t read the signs of the times'}
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1100hrs/', 'title': 'Here’s another one who thinks he’s charming and charismatic'}
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1030hrs/', 'title': 'The Pink Panther? How about the Pink Elephant?'}
{'date': '2008-03-31', 'url': 'https://daphnecaruanagalizia.com/2008/03/monday-31-march-1000hrs/', 'title': 'Without Joe Mizzi, we won’t find oil'}
{'date': '2008-03-30', 'url': 'https://daphnecaruanagalizia.com/2008/03/sunday-27-march-1230hrs/', 'title': 'Yes, it is our business'}
{'date': '2008-03-30', 'url': 'https://daphnecaruanagalizia.com/2008/03/sunday-30-march-1100hrs/', 'title': 'The anointed one'}
{'date': '2008-03-29', 'url': 'https://daphnecaruanagalizia.com/2008/03/saturday-29-march-1800hrs/', 'title': 'Dr Anthony J Licari, the Methuselah'}
{'date': '2008-03-29', 'url': 'https://daphnecaruanagalizia.com/2008/03/saturday-29-march-1600hrs/', 'title': 'What the doctor of psycholinguistics thinks about Joseph and George'}
{'date': '2008-03-29', 'url': 'https://daphnecaruanagalizia.com/2008/03/saturday-29-march-1545hrs/', 'title': 'Anthony Licari is not a sailor'}
https://daphnecaruanagalizia.com/2008/4
{'date': '2008-04-29', 'url': 'https://daphnecaruanagalizia.com/2008/04/the-mullahs-from-malta/', 'title': 'The mullahs from Malta'}
{'date': '2008-04-29', 'url': 'https://daphnecaruanagalizia.com/2008/04/defending-the-indefensible/', 'title': 'Defending the indefensible'}
{'date': '2008-04-29', 'url': 'https://daphnecaruanagalizia.com/2008/04/they-didn%e2%80%99t-go-all-the-way/', 'title': 'They didn’t go all the way'}
{'date': '2008-04-29', 'url': 'https://daphnecaruanagalizia.com/2008/04/another-dagger-drawn/', 'title': 'Another dagger drawn'}
{'date': '2008-04-28', 'url': 'https://daphnecaruanagalizia.com/2008/04/the-poodle-must-be-thrilled/', 'title': 'The poodle must be thrilled'}
{'date': '2008-04-28', 'url': 'https://daphnecaruanagalizia.com/2008/04/some-commonsense-from-australia/', 'title': 'Some commonsense from Australia'}
{'date': '2008-04-27', 'url': 'https://daphnecaruanagalizia.com/2008/04/a-silent-spring-at-last/', 'title': 'A silent spring, at last'}
{'date': '2008-04-24', 'url': 'https://daphnecaruanagalizia.com/2008/04/a-hunter-is-accosted-by-a-rubber-jolly-and-a-man-who-is-sexually-attracted-to-continents/', 'title': 'A hunter is accosted by a rubber jolly and a man who is sexually attracted to continents'}
{'date': '2008-04-24', 'url': 'https://daphnecaruanagalizia.com/2008/04/dont-you-dare-laugh-at-lorna-vassallo/', 'title': "Don't you dare laugh at Lorna Vassallo"}
{'date': '2008-04-24', 'url': 'https://daphnecaruanagalizia.com/2008/04/high-on-emotion/', 'title': 'High on emotion'}
{'date': '2008-04-23', 'url': 'https://daphnecaruanagalizia.com/2008/04/one-example-of-why-convicted-child-molesters-should-be-exposed/', 'title': 'One example of why convicted child molesters should be exposed'}
https://daphnecaruanagalizia.com/2008/5
{'date': '2008-05-31', 'url': 'https://daphnecaruanagalizia.com/2008/05/oh-look-%e2%80%93-another-irrevocable-resignation/', 'title': 'Oh, look – another irrevocable resignation'}
{'date': '2008-05-30', 'url': 'https://daphnecaruanagalizia.com/2008/05/no-posts-today/', 'title': 'No posts today'}
{'date': '2008-05-29', 'url': 'https://daphnecaruanagalizia.com/2008/05/oh-look-%e2%80%93-they-still-don%e2%80%99t-understand-free-speech/', 'title': 'Oh, look – they still don’t understand free speech'}
{'date': '2008-05-29', 'url': 'https://daphnecaruanagalizia.com/2008/05/pr-for-prat/', 'title': 'PR for Prat'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/endorsement-by-a-foreign-politician-is-not-the-same-as-endorsement-by-a-citizen-of-your-own-country/', 'title': 'Endorsement by a foreign politician is not the same as endorsement by a citizen of your own country'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/a-finger-in-every-party-pie/', 'title': 'A finger in every party pie'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/more-paranoia-from-lejber/', 'title': 'More paranoia from Lejber'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/dak-evarist-ukoll/', 'title': 'Dak Evarist ukoll'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/prosy-points-1/', 'title': 'Prosy points (1)'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/choice-quotes-from-the-why-we-lost-report/', 'title': 'Choice quotes from the Why We Lost report'}
{'date': '2008-05-27', 'url': 'https://daphnecaruanagalizia.com/2008/05/so-that%e2%80%99s-it/', 'title': 'So that’s it!'}
https://daphnecaruanagalizia.com/2008/6
{'date': '2008-06-29', 'url': 'https://daphnecaruanagalizia.com/2008/06/this-weeks-notebook/', 'title': "This week's notebook"}
{'date': '2008-06-28', 'url': 'https://daphnecaruanagalizia.com/2008/06/this-is-the-link-to-the-white-paper-on-rent-reform/', 'title': 'This is the link to the white paper on rent reform'}
{'date': '2008-06-28', 'url': 'https://daphnecaruanagalizia.com/2008/06/inherit-a-rent-boy/', 'title': 'Inherit a rent boy'}
{'date': '2008-06-26', 'url': 'https://daphnecaruanagalizia.com/2008/06/more-prosy-points/', 'title': 'More prosy points'}
{'date': '2008-06-25', 'url': 'https://daphnecaruanagalizia.com/2008/06/things-i-have-learned-from-anglu/', 'title': 'Things I have learned from Anglu'}
{'date': '2008-06-24', 'url': 'https://daphnecaruanagalizia.com/2008/06/oh-so-we-do-have-divorce/', 'title': 'Oh, so we do have divorce'}
{'date': '2008-06-24', 'url': 'https://daphnecaruanagalizia.com/2008/06/the-first-miracle-an-immaculate-conception/', 'title': 'The first miracle: an immaculate conception'}
{'date': '2008-06-23', 'url': 'https://daphnecaruanagalizia.com/2008/06/more-hysterics-from-labour/', 'title': 'More hysterics from Labour'}
{'date': '2008-06-22', 'url': 'https://daphnecaruanagalizia.com/2008/06/stone-the-scarlet-women/', 'title': 'Stone the scarlet women'}
{'date': '2008-06-20', 'url': 'https://daphnecaruanagalizia.com/2008/06/everything-changes-and-everything-stays-the-same/', 'title': 'Everything changes and everything stays the same'}
{'date': '2008-06-20', 'url': 'https://daphnecaruanagalizia.com/2008/06/a-new-magazine-about-business-in-malta/', 'title': 'A new magazine about business in Malta'}
https://daphnecaruanagalizia.com/2008/7
{'date': '2008-07-31', 'url': 'https://daphnecaruanagalizia.com/2008/07/ding-dong-hell/', 'title': 'Ding-dong hell'}
{'date': '2008-07-27', 'url': 'https://daphnecaruanagalizia.com/2008/07/put-a-stop-to-the-fairytale-reporting-please/', 'title': 'Put a stop to the fairytale reporting, please'}
{'date': '2008-07-25', 'url': 'https://daphnecaruanagalizia.com/2008/07/a-view-to-a-kill/', 'title': 'A view to a kill'}
{'date': '2008-07-25', 'url': 'https://daphnecaruanagalizia.com/2008/07/how-not-to-save-the-planet/', 'title': 'How not to save the planet'}
{'date': '2008-07-24', 'url': 'https://daphnecaruanagalizia.com/2008/07/good-grief-they-spoke-the-word/', 'title': 'Good grief, they spoke the word'}
{'date': '2008-07-23', 'url': 'https://daphnecaruanagalizia.com/2008/07/another-maltese-to-be-proud-of/', 'title': 'Another Maltese to be proud of'}
{'date': '2008-07-22', 'url': 'https://daphnecaruanagalizia.com/2008/07/extreme-office-politics/', 'title': 'Extreme office politics'}
{'date': '2008-07-20', 'url': 'https://daphnecaruanagalizia.com/2008/07/no-placards-no-banners%e2%80%a6a-sub-literate-demonstration/', 'title': 'No placards, no banners…..a sub-literate demonstration'}
{'date': '2008-07-17', 'url': 'https://daphnecaruanagalizia.com/2008/07/for-shame/', 'title': 'For shame'}
{'date': '2008-07-15', 'url': 'https://daphnecaruanagalizia.com/2008/07/the-first-maltese-at-chateau-d%e2%80%99if/', 'title': 'The first Maltese at Chateau d’If'}
{'date': '2008-07-13', 'url': 'https://daphnecaruanagalizia.com/2008/07/better-an-abused-system-than-no-system-at-all/', 'title': 'Better an abused system than no system at all'}
https://daphnecaruanagalizia.com/2008/8
{'date': '2008-08-31', 'url': 'https://daphnecaruanagalizia.com/2008/08/hurry-the-gravy-train-is-leaving-the-station/', 'title': 'Hurry, the gravy-train is leaving the station'}
{'date': '2008-08-31', 'url': 'https://daphnecaruanagalizia.com/2008/08/enough-about-that-twenty-pounds-already/', 'title': 'Enough about that twenty pounds already'}
{'date': '2008-08-31', 'url': 'https://daphnecaruanagalizia.com/2008/08/america-1960-malta-2008/', 'title': 'America 1960, Malta 2008'}
{'date': '2008-08-31', 'url': 'https://daphnecaruanagalizia.com/2008/08/theres-a-tiger-in-his-tank/', 'title': "There's a tiger in his tank"}
{'date': '2008-08-30', 'url': 'https://daphnecaruanagalizia.com/2008/08/sos-georgia/', 'title': 'SOS Georgia'}
{'date': '2008-08-30', 'url': 'https://daphnecaruanagalizia.com/2008/08/minn-wara-l-muntanji/', 'title': 'Minn wara l-muntanji'}
{'date': '2008-08-30', 'url': 'https://daphnecaruanagalizia.com/2008/08/keeping-the-marriage-together-at-all-costs/', 'title': 'Keeping the marriage together at all costs'}
{'date': '2008-08-29', 'url': 'https://daphnecaruanagalizia.com/2008/08/another-howler/', 'title': 'Another howler'}
{'date': '2008-08-29', 'url': 'https://daphnecaruanagalizia.com/2008/08/they-couldnt-wait-for-liberalisation/', 'title': "They couldn't wait for liberalisation"}
{'date': '2008-08-28', 'url': 'https://daphnecaruanagalizia.com/2008/08/cocaine-and-gonorrhoea-but-please-no-divorce/', 'title': 'Cocaine and gonorrhoea – but please, no divorce'}
{'date': '2008-08-27', 'url': 'https://daphnecaruanagalizia.com/2008/08/to-hell-with-mintoff/', 'title': 'To hell with Mintoff'}
https://daphnecaruanagalizia.com/2008/9
{'date': '2008-09-30', 'url': 'https://daphnecaruanagalizia.com/2008/09/ja-pecluq-li-hu/', 'title': 'Ja pecluq li hu'}
{'date': '2008-09-30', 'url': 'https://daphnecaruanagalizia.com/2008/09/qishom-tal-festa-jigbru-ghan-nar/', 'title': 'Qishom tal-festa, jigbru ghan-nar'}
{'date': '2008-09-30', 'url': 'https://daphnecaruanagalizia.com/2008/09/joey-and-the-old-bats/', 'title': 'Joey and the old bats'}
{'date': '2008-09-30', 'url': 'https://daphnecaruanagalizia.com/2008/09/celebrity-quote-of-the-year/', 'title': 'Celebrity quote of the year'}
{'date': '2008-09-29', 'url': 'https://daphnecaruanagalizia.com/2008/09/daphnes-opinion-indeed/', 'title': "Daphne's opinion, indeed."}
{'date': '2008-09-28', 'url': 'https://daphnecaruanagalizia.com/2008/09/quick-redeem-those-gozitans/', 'title': 'Quick, redeem those Gozitans'}
{'date': '2008-09-28', 'url': 'https://daphnecaruanagalizia.com/2008/09/get-things-into-perspective-will-you/', 'title': 'Get things into perspective, will you?'}
{'date': '2008-09-28', 'url': 'https://daphnecaruanagalizia.com/2008/09/if-god-provides-we-neednt-bother/', 'title': "If God provides, we needn't bother"}
{'date': '2008-09-25', 'url': 'https://daphnecaruanagalizia.com/2008/09/closed-for-business/', 'title': 'Closed for business'}
{'date': '2008-09-25', 'url': 'https://daphnecaruanagalizia.com/2008/09/what-national-crisis/', 'title': 'What national crisis?'}
{'date': '2008-09-24', 'url': 'https://daphnecaruanagalizia.com/2008/09/heres-another-one-about-sarah-palin/', 'title': "Here's another one about Sarah Palin"}
https://daphnecaruanagalizia.com/2008/10
{'date': '2008-10-31', 'url': 'https://daphnecaruanagalizia.com/2008/10/insight-into-a-lejberrrr-brain/', 'title': 'Insight into a Lejberrrr brain'}
{'date': '2008-10-31', 'url': 'https://daphnecaruanagalizia.com/2008/10/im-getting-all-angry-and-upset-watching-xarabank/', 'title': "I'm getting all angry and upset watching Xarabank"}
{'date': '2008-10-31', 'url': 'https://daphnecaruanagalizia.com/2008/10/miskin-mintoff-suffered-so-much-more-than-anthony-mifsud/', 'title': 'Miskin, Mintoff suffered so much more than Anthony Mifsud'}
{'date': '2008-10-31', 'url': 'https://daphnecaruanagalizia.com/2008/10/its-not-looking-good-for-poor-anthony-mifsud-not-that-it-ever-was/', 'title': "It's not looking good for poor Anthony Mifsud (not that it ever was)"}
{'date': '2008-10-31', 'url': 'https://daphnecaruanagalizia.com/2008/10/does-anyone-at-the-curia-have-a-packet-of-wet-wipes-to-hand/', 'title': 'Does anyone at the Curia have a packet of wet-wipes to hand?'}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/i-aint-sittin-in-this-darn-hole-no-more/', 'title': "I ain't sittin' in this darn hole no more"}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/partit-miftuh-ghal-kullhadd/', 'title': 'Partit miftuh ghal kullhadd'}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/so-its-over-is-it/', 'title': "So it's over, is it?"}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/here-are-some-people-who-wont-be-manifesting-with-joseph/', 'title': "Here are some people who won't be manifesting with Joseph"}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/amen-to-that/', 'title': 'Amen to that'}
{'date': '2008-10-30', 'url': 'https://daphnecaruanagalizia.com/2008/10/more-astounding-ignorance-from-muscat-and-those-johnnies-who-advise-him/', 'title': 'More astounding ignorance from Muscat and those Johnnies who advise him'}
https://daphnecaruanagalizia.com/2008/11
{'date': '2008-11-30', 'url': 'https://daphnecaruanagalizia.com/2008/11/an-important-judgement-by-the-grand-chamber-of-the-european-court-of-human-rights/', 'title': 'An important judgement by the Grand Chamber of the European Court of Human Rights'}
{'date': '2008-11-30', 'url': 'https://daphnecaruanagalizia.com/2008/11/oh-the-pig%e2%80%99s-tail-has-gone/', 'title': 'Oh, the pig’s tail has gone'}
{'date': '2008-11-29', 'url': 'https://daphnecaruanagalizia.com/2008/11/firewood/', 'title': 'Firewood'}
{'date': '2008-11-27', 'url': 'https://daphnecaruanagalizia.com/2008/11/a-new-image-for-labour/', 'title': 'A new image for Labour'}
{'date': '2008-11-27', 'url': 'https://daphnecaruanagalizia.com/2008/11/donna-summer-for-the-mumn/', 'title': 'Donna Summer for the MUMN'}
{'date': '2008-11-27', 'url': 'https://daphnecaruanagalizia.com/2008/11/a-little-bit-of-lipstick-goes-a-long-way/', 'title': 'A little bit of lipstick goes a long way'}
{'date': '2008-11-26', 'url': 'https://daphnecaruanagalizia.com/2008/11/mumbai/', 'title': 'Mumbai'}
{'date': '2008-11-25', 'url': 'https://daphnecaruanagalizia.com/2008/11/roll-on-december/', 'title': 'Roll on, December'}
{'date': '2008-11-23', 'url': 'https://daphnecaruanagalizia.com/2008/11/kina-lillet/', 'title': 'Kina Lillet'}
{'date': '2008-11-23', 'url': 'https://daphnecaruanagalizia.com/2008/11/the-gang-rape-of-commonsense/', 'title': 'The gang-rape of commonsense'}
{'date': '2008-11-21', 'url': 'https://daphnecaruanagalizia.com/2008/11/remember-that-lm1200-cheque-muscat/', 'title': 'Remember that Lm1,200 cheque, Muscat?'}
https://daphnecaruanagalizia.com/2008/12
{'date': '2008-12-31', 'url': 'https://daphnecaruanagalizia.com/2008/12/19450-comments/', 'title': '19,450 comments'}
{'date': '2008-12-31', 'url': 'https://daphnecaruanagalizia.com/2008/12/happy-new-year/', 'title': 'Happy New Year'}
{'date': '2008-12-31', 'url': 'https://daphnecaruanagalizia.com/2008/12/no-the-times-didnt-commit-murder/', 'title': "No, The Times didn't commit murder"}
{'date': '2008-12-31', 'url': 'https://daphnecaruanagalizia.com/2008/12/denis-catania-the-immigrant-saves-malta-all-the-way-from-the-us-of-a/', 'title': 'Denis Catania the immigrant saves Malta all the way from the US of A'}
{'date': '2008-12-31', 'url': 'https://daphnecaruanagalizia.com/2008/12/i-would-expect-nothing-more-from-the-country-that-gave-us-fascism-and-mussolini/', 'title': 'I would expect nothing more from the country that gave us fascism and Mussolini'}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/thats-right-theres-no-racism-in-malta/', 'title': "That's right, there's no racism in Malta"}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/this-one-wasnt-from-somalia/', 'title': "This one wasn't from Somalia"}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/facebook-1-boob-neurotics-0/', 'title': 'Facebook 1; Boob Neurotics 0'}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/no-wonder-the-older-generation-stayed-in-the-closet/', 'title': 'No wonder the older generation stayed in the closet'}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/a-fatwa-on-birmingham-airport-says-jacqueline/', 'title': 'A fatwa on Birmingham Airport, says Jacqueline'}
{'date': '2008-12-30', 'url': 'https://daphnecaruanagalizia.com/2008/12/what-was-it-that-police-officer-said-that-this-is-not-somalia/', 'title': 'What was it that police officer said? That this is not Somalia?'}
https://daphnecaruanagalizia.com/2009/1
{'date': '2009-01-29', 'url': 'https://daphnecaruanagalizia.com/2009/01/grumbling-about-your-electricity-bill-this-will-take-your-mind-off-it/', 'title': 'Grumbling about your electricity bill? This will take your mind off it.'}
{'date': '2009-01-29', 'url': 'https://daphnecaruanagalizia.com/2009/01/no-the-end-isn%e2%80%99t-nigh/', 'title': 'No, the end isn’t nigh'}
{'date': '2009-01-29', 'url': 'https://daphnecaruanagalizia.com/2009/01/money/', 'title': 'Money'}
{'date': '2009-01-28', 'url': 'https://daphnecaruanagalizia.com/2009/01/guest-post-by-sharon-ellul-bonici/', 'title': 'Guest post by Sharon Ellul Bonici'}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/and-then-we-look-down-on-islamic-states-as-backward-for-doing-just-this-kind-of-thing/', 'title': 'And then we look down on Islamic states as backward, for doing just this kind of thing'}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/there-speaks-the-albatross-round-the-partys-neck/', 'title': "There speaks the albatross round the party's neck – again"}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/even-a-40-foot-trailer-isnt-safe-on-an-island-where-bushes-are-stolen-from-roundabouts/', 'title': "Even a 40-foot trailer isn't safe on an island where bushes are stolen from roundabouts"}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/damn-right-its-the-year-of-the-ox/', 'title': "Damn right it's the Year of the Ox"}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/razza-ta-nies-pruzuntuzi-li-nifhmu-u-nindahlu-fkollox/', 'title': "Razza ta' nies pruzuntuzi li nifhmu u nindahlu f'kollox"}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/oh-please-no-running-with-the-hares-and-hunting-with-the-hounds/', 'title': 'Oh please, no running with the hares and hunting with the hounds'}
{'date': '2009-01-26', 'url': 'https://daphnecaruanagalizia.com/2009/01/another-italian-right-wing-a-hole/', 'title': 'Another Italian right-wing a**-hole'}
https://daphnecaruanagalizia.com/2009/2
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/tow-karmenu-to-libya-sign-our-petition-now/', 'title': 'Tow Karmenu to Libya – sign our petition NOW'}
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/oh-my-god-karmenu-gets-on-the-bandwagon-too/', 'title': 'Oh. My. God. Karmenu gets on the bandwagon too'}
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/thinking-like-a-true-maltese/', 'title': 'Thinking like a true Maltese'}
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/maltese-charity/', 'title': 'Maltese charity'}
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/mr-conflict-of-interest-shoots-his-mouth-off-again/', 'title': 'Mr Conflict of Interest shoots his mouth off again'}
{'date': '2009-02-28', 'url': 'https://daphnecaruanagalizia.com/2009/02/il-kanzunetta-rebbieha-tal-eurovision/', 'title': 'Il-kanzunetta rebbieha tal-Eurovision'}
{'date': '2009-02-27', 'url': 'https://daphnecaruanagalizia.com/2009/02/do-not-vote-for-this-man/', 'title': 'Do NOT vote for this man'}
{'date': '2009-02-27', 'url': 'https://daphnecaruanagalizia.com/2009/02/romegas-and-dock-no-1/', 'title': 'Romegas and Dock No. 1'}
{'date': '2009-02-27', 'url': 'https://daphnecaruanagalizia.com/2009/02/the-wisdom-of-the-people-7/', 'title': 'The wisdom of The People (7)'}
{'date': '2009-02-27', 'url': 'https://daphnecaruanagalizia.com/2009/02/minn-wara-l-kwinti/', 'title': 'Minn wara l-kwinti'}
{'date': '2009-02-27', 'url': 'https://daphnecaruanagalizia.com/2009/02/a-letter-from-somebody-who-doesnt-know-what-hes-talking-about-according-to-bo-peep-and-her-sheep/', 'title': "A letter from somebody who doesn't know what he's talking about – according to Bo Peep and her sheep"}
https://daphnecaruanagalizia.com/2009/3
{'date': '2009-03-31', 'url': 'https://daphnecaruanagalizia.com/2009/03/muscat-jisfida-l-kritici-u-mmur-jiekol-hemborger-ma-michelle-illejla/', 'title': "Muscat jisfida l-kritici u imur jiekol hemborger ma' Michelle illejla"}
{'date': '2009-03-31', 'url': 'https://daphnecaruanagalizia.com/2009/03/bbq-najt-tal-labour-il-birgu/', 'title': 'BBQ Najt tal-Labour il-Birgu'}
{'date': '2009-03-31', 'url': 'https://daphnecaruanagalizia.com/2009/03/the-harsh-reality-behind-muscats-ghoxrin-punt-plan/', 'title': "The harsh reality behind Muscat's ghoxrin-punt plan"}
{'date': '2009-03-30', 'url': 'https://daphnecaruanagalizia.com/2009/03/banned-by-our-soviet-friends-in-the-1980s/', 'title': 'Banned by our Soviet friends in the 1980s'}
{'date': '2009-03-30', 'url': 'https://daphnecaruanagalizia.com/2009/03/oh-grow-up-joseph-muscat/', 'title': 'Oh grow up, Joseph Muscat'}
{'date': '2009-03-30', 'url': 'https://daphnecaruanagalizia.com/2009/03/muscat-celebrates-freedom-from-l-inglizi/', 'title': 'Muscat celebrates freedom from L-Inglizi'}
{'date': '2009-03-29', 'url': 'https://daphnecaruanagalizia.com/2009/03/what-i-did-on-my-holidess-by-anglu-and-joseph/', 'title': 'What I did on my holidess, by Anglu and Joseph'}
{'date': '2009-03-29', 'url': 'https://daphnecaruanagalizia.com/2009/03/27-years-after-the-loincloth/', 'title': '27 years after the loincloth'}
{'date': '2009-03-29', 'url': 'https://daphnecaruanagalizia.com/2009/03/41/', 'title': '4:1'}
{'date': '2009-03-29', 'url': 'https://daphnecaruanagalizia.com/2009/03/i-tell-people-what-to-do-with-their-money/', 'title': '"I tell people what to do with their money"'}
{'date': '2009-03-29', 'url': 'https://daphnecaruanagalizia.com/2009/03/i%e2%80%99m-sorry-but-i-have-a-subsequent-engagement/', 'title': 'I’m sorry, but I have a subsequent engagement'}
https://daphnecaruanagalizia.com/2009/4
{'date': '2009-04-30', 'url': 'https://daphnecaruanagalizia.com/2009/04/no-regrets-i-was-right/', 'title': '"No regrets. I was right."'}
{'date': '2009-04-30', 'url': 'https://daphnecaruanagalizia.com/2009/04/an-obsession-with-voting/', 'title': 'An obsession with voting'}
{'date': '2009-04-29', 'url': 'https://daphnecaruanagalizia.com/2009/04/yes-the-ban-on-spring-hunting-has-made-a-positive-difference/', 'title': 'Yes, the ban on spring hunting has made a positive difference'}
{'date': '2009-04-28', 'url': 'https://daphnecaruanagalizia.com/2009/04/malta-gears-up-for-the-barbecue-season/', 'title': 'Malta gears up for the barbecue season'}
{'date': '2009-04-28', 'url': 'https://daphnecaruanagalizia.com/2009/04/as-if-we-needed-telling/', 'title': 'As if we needed telling'}
{'date': '2009-04-27', 'url': 'https://daphnecaruanagalizia.com/2009/04/angelik-gives-birth-to-rosemarys-baby/', 'title': "Angelik gives birth to Rosemary's baby"}
{'date': '2009-04-26', 'url': 'https://daphnecaruanagalizia.com/2009/04/the-madonna-gold-rush/', 'title': 'The Madonna gold rush'}
{'date': '2009-04-25', 'url': 'https://daphnecaruanagalizia.com/2009/04/il-madonna-using-the-internet-would-have-been-simpler/', 'title': 'Il-Madonna, using the internet would have been simpler'}
{'date': '2009-04-25', 'url': 'https://daphnecaruanagalizia.com/2009/04/out-tomorrow-2/', 'title': 'Out tomorrow'}
{'date': '2009-04-24', 'url': 'https://daphnecaruanagalizia.com/2009/04/hey-its-von-fred-on-xarabank/', 'title': "Hey, it's von Fred on Xarabank"}
{'date': '2009-04-23', 'url': 'https://daphnecaruanagalizia.com/2009/04/new-labour-new-men-spare-me/', 'title': 'New Labour, new men – spare me'}
https://daphnecaruanagalizia.com/2009/5
{'date': '2009-05-31', 'url': 'https://daphnecaruanagalizia.com/2009/05/slapdash-words-for-a-slapdash-attitude/', 'title': 'Slapdash words for a slapdash attitude'}
{'date': '2009-05-30', 'url': 'https://daphnecaruanagalizia.com/2009/05/muscat-wanted-the-state-to-buy-his-car-and-give-it-back-to-him/', 'title': 'Muscat wanted the state to buy his car and give it back to him'}
{'date': '2009-05-29', 'url': 'https://daphnecaruanagalizia.com/2009/05/oh-look-a-message-from-somebody-planning-to-vote-for-edward-scicluna/', 'title': 'Oh, look – a message from somebody planning to vote for Edward Scicluna'}
{'date': '2009-05-29', 'url': 'https://daphnecaruanagalizia.com/2009/05/happy-birthday-o-mexxej/', 'title': 'Happy birthday, O Mexxej'}
{'date': '2009-05-29', 'url': 'https://daphnecaruanagalizia.com/2009/05/mein-liebe-schulz-takes-the-bus/', 'title': 'Mein lieber Schulz takes the bus'}
{'date': '2009-05-28', 'url': 'https://daphnecaruanagalizia.com/2009/05/money-makes-their-world-go-round/', 'title': 'Money makes their world go round'}
{'date': '2009-05-27', 'url': 'https://daphnecaruanagalizia.com/2009/05/he%e2%80%99s-so-cool-%e2%80%93-he-doesn%e2%80%99t-know-how-much-his-car-cost/', 'title': 'He’s so cool – he doesn’t know how much his car cost'}
{'date': '2009-05-27', 'url': 'https://daphnecaruanagalizia.com/2009/05/xfaqa-u-turn-dak-dwart/', 'title': "X'faqa U-turn dak, Dwart!"}
{'date': '2009-05-27', 'url': 'https://daphnecaruanagalizia.com/2009/05/oh-baby-you-have-to-watch-this-one/', 'title': 'Oh baby, you have to watch this one'}
{'date': '2009-05-27', 'url': 'https://daphnecaruanagalizia.com/2009/05/edward-scicluna-its-impossible-for-healthcare-to-remain-free-to-all/', 'title': 'Edward Scicluna – "it\'s impossible for healthcare to remain free to all"'}
{'date': '2009-05-25', 'url': 'https://daphnecaruanagalizia.com/2009/05/joseph-and-michelle-spend-eur60000-on-cars/', 'title': 'Joseph and Michelle spend EUR60,000 on cars'}
https://daphnecaruanagalizia.com/2009/6
{'date': '2009-06-30', 'url': 'https://daphnecaruanagalizia.com/2009/06/the-people-project-their-problems-onto-paul-and-publius/', 'title': 'The People project their problems onto Paul and Publius'}
{'date': '2009-06-29', 'url': 'https://daphnecaruanagalizia.com/2009/06/kajbews-and-indians-muslims-and-christians/', 'title': 'Kajbews and Indians, Muslims and Christians'}
{'date': '2009-06-29', 'url': 'https://daphnecaruanagalizia.com/2009/06/come-on-astrid-were-waiting/', 'title': "Come on, Astrid! We're waiting"}
{'date': '2009-06-28', 'url': 'https://daphnecaruanagalizia.com/2009/06/wheres-astrid/', 'title': "Where's Astrid?"}
{'date': '2009-06-28', 'url': 'https://daphnecaruanagalizia.com/2009/06/oh-baby-i-just-love-page-5-of-the-sunday-times/', 'title': 'Oh, baby – I just love page 5 of The Sunday Times'}
{'date': '2009-06-28', 'url': 'https://daphnecaruanagalizia.com/2009/06/visit-valletta-and-see-the-plans/', 'title': 'Visit Valletta and see the plans'}
{'date': '2009-06-28', 'url': 'https://daphnecaruanagalizia.com/2009/06/the-naysayers-gird-their-loins/', 'title': 'The naysayers gird their loins'}
{'date': '2009-06-26', 'url': 'https://daphnecaruanagalizia.com/2009/06/crazy-story-no-2/', 'title': 'Crazy story no. 2'}
{'date': '2009-06-26', 'url': 'https://daphnecaruanagalizia.com/2009/06/crazy-story-no-1/', 'title': 'Crazy story no. 1'}
{'date': '2009-06-26', 'url': 'https://daphnecaruanagalizia.com/2009/06/taking-money-off-the-gullible/', 'title': 'Taking money off the gullible'}
{'date': '2009-06-26', 'url': 'https://daphnecaruanagalizia.com/2009/06/cocaine-island/', 'title': 'Cocaine island'}
https://daphnecaruanagalizia.com/2009/7
{'date': '2009-07-31', 'url': 'https://daphnecaruanagalizia.com/2009/07/herr-flick-would-have-us-know-that-he-is-not-a-cripple/', 'title': 'Herr Flick would have us know that he is not a cripple'}
{'date': '2009-07-31', 'url': 'https://daphnecaruanagalizia.com/2009/07/labour-and-faa-theyre-the-frigging-limit-project-blockers-the-lot-of-them/', 'title': "Labour and FAA – they're the frigging limit. Project blockers, the lot of them."}
{'date': '2009-07-30', 'url': 'https://daphnecaruanagalizia.com/2009/07/i-just-wish-the-people-would-stop-speaking-for-five-damned-minutes/', 'title': 'I just wish The People would stop speaking for five damned minutes'}
{'date': '2009-07-30', 'url': 'https://daphnecaruanagalizia.com/2009/07/the-orange-man-and-jessica-rabbit/', 'title': 'The orange man and Jessica Rabbit'}
{'date': '2009-07-28', 'url': 'https://daphnecaruanagalizia.com/2009/07/so-its-true-the-beauty-gap-between-the-sexes-is-widening/', 'title': "So it's true: the beauty gap between the sexes IS widening"}
{'date': '2009-07-28', 'url': 'https://daphnecaruanagalizia.com/2009/07/faa-reaction-to-the-city-gate-project-a-thriller-in-four-parts-part-ii-out-now/', 'title': 'FAA reaction to the City Gate project: a thriller in four parts. Part II out now.'}
{'date': '2009-07-27', 'url': 'https://daphnecaruanagalizia.com/2009/07/the-curious-case-of-the-married-woman-who-applied-for-a-permit-in-her-name-meta-dawn-l-affarijiet-suppost-jaghmilhom-il-kap-tal-familja/', 'title': 'The curious case of the married woman who applied for a permit in her name, meta dawn l-affarijiet suppost jaghmilhom il-kap tal-familja'}
{'date': '2009-07-26', 'url': 'https://daphnecaruanagalizia.com/2009/07/guest-post-politicians-have-to-face-marriage-facts/', 'title': 'Guest post: Politicians have to face marriage facts'}
{'date': '2009-07-26', 'url': 'https://daphnecaruanagalizia.com/2009/07/more-parking-space-for-astrid-miriam-already-has-hers-in-valletta/', 'title': 'More parking space for Astrid (Miriam already has hers in Valletta)'}
{'date': '2009-07-26', 'url': 'https://daphnecaruanagalizia.com/2009/07/astrid-vella-her-public-affairs-tactics-are-modelled-on-those-of-alfred-sant/', 'title': 'Astrid Vella – her public affairs tactics are modelled on those of Alfred Sant'}
{'date': '2009-07-26', 'url': 'https://daphnecaruanagalizia.com/2009/07/oh-golly-gumdrops-the-oracle-has-spoken/', 'title': 'Oh golly gumdrops, the oracle has spoken'}
https://daphnecaruanagalizia.com/2009/8
{'date': '2009-08-30', 'url': 'https://daphnecaruanagalizia.com/2009/08/no-longer-born-free/', 'title': 'No longer born free'}
{'date': '2009-08-27', 'url': 'https://daphnecaruanagalizia.com/2009/08/more-wisdom-of-the-people-immigrants-are-living-off-our-blood-like-lychees/', 'title': 'More wisdom of The People: immigrants are living off our blood like lychees'}
{'date': '2009-08-27', 'url': 'https://daphnecaruanagalizia.com/2009/08/like-an-animal/', 'title': 'Like an animal'}
{'date': '2009-08-26', 'url': 'https://daphnecaruanagalizia.com/2009/08/3695/', 'title': "You can't teach an old dog new tricks"}
{'date': '2009-08-23', 'url': 'https://daphnecaruanagalizia.com/2009/08/yawn/', 'title': 'Yawn'}
{'date': '2009-08-22', 'url': 'https://daphnecaruanagalizia.com/2009/08/the-people-some-of-them-are-crackers/', 'title': 'The People – some of them are crackers'}
{'date': '2009-08-20', 'url': 'https://daphnecaruanagalizia.com/2009/08/the-archbishop%e2%80%99s-arguments-lack-logic/', 'title': 'The archbishop’s arguments lack logic'}
{'date': '2009-08-19', 'url': 'https://daphnecaruanagalizia.com/2009/08/oh-oh-standards-are-falling-further/', 'title': 'Oh-oh, standards are falling further'}
{'date': '2009-08-17', 'url': 'https://daphnecaruanagalizia.com/2009/08/and-now-its-a-hen/', 'title': "And now it's a hen"}
{'date': '2009-08-16', 'url': 'https://daphnecaruanagalizia.com/2009/08/be-careful-what-you-wish-for/', 'title': 'Be careful what you wish for'}
{'date': '2009-08-14', 'url': 'https://daphnecaruanagalizia.com/2009/08/the-ducks-that-lays-the-golden-duck/', 'title': 'The duck that lays the golden duck'}
https://daphnecaruanagalizia.com/2009/9
{'date': '2009-09-30', 'url': 'https://daphnecaruanagalizia.com/2009/09/how-much-did-joseph-muscat-pay-for-this-letter/', 'title': 'How much did Joseph Muscat pay for this letter?'}
{'date': '2009-09-29', 'url': 'https://daphnecaruanagalizia.com/2009/09/oh-oh-someones-coming-up-behind-him/', 'title': "Oh-oh, someone's coming up behind him….."}
{'date': '2009-09-28', 'url': 'https://daphnecaruanagalizia.com/2009/09/ghamlilna-bye-bye-il-men/', 'title': 'Ghamlilna bye-bye, il-men'}
{'date': '2009-09-27', 'url': 'https://daphnecaruanagalizia.com/2009/09/something-else-to-bicker-about/', 'title': 'Something else to bicker about'}
{'date': '2009-09-26', 'url': 'https://daphnecaruanagalizia.com/2009/09/simple-things-are-hard-to-understand-it-seems/', 'title': 'Simple things are hard to understand, it seems'}
{'date': '2009-09-26', 'url': 'https://daphnecaruanagalizia.com/2009/09/armed-and-mental/', 'title': 'Armed and mental'}
{'date': '2009-09-26', 'url': 'https://daphnecaruanagalizia.com/2009/09/i-like-this-lady-more-and-more/', 'title': 'I like this lady more and more'}
{'date': '2009-09-24', 'url': 'https://daphnecaruanagalizia.com/2009/09/fairness-is-as-fairness-does/', 'title': 'Fairness is as fairness does'}
{'date': '2009-09-13', 'url': 'https://daphnecaruanagalizia.com/2009/09/a-general-interdiction-is-nothing-says-vince/', 'title': 'A general interdiction is nothing, says Vince'}
{'date': '2009-09-07', 'url': 'https://daphnecaruanagalizia.com/2009/09/animal-welfare-human-rights/', 'title': 'Animal welfare, human rights'}
{'date': '2009-09-03', 'url': 'https://daphnecaruanagalizia.com/2009/09/keeping-up-with-the-camilleris/', 'title': 'Keeping up with the Camilleris'}
https://daphnecaruanagalizia.com/2009/10
{'date': '2009-10-30', 'url': 'https://daphnecaruanagalizia.com/2009/10/oh-fabulous-now-they%e2%80%99re-ashamed-to-be-labour/', 'title': 'Oh fabulous. Now they’re ashamed to be Labour.'}
{'date': '2009-10-26', 'url': 'https://daphnecaruanagalizia.com/2009/10/somebody-really-needs-to-tell-joseph-muscat-to-fk-off/', 'title': 'Somebody really needs to tell Joseph Muscat to f**k off'}
{'date': '2009-10-26', 'url': 'https://daphnecaruanagalizia.com/2009/10/freedom-day-and-all-that/', 'title': 'Freedom Day and all that'}
{'date': '2009-10-26', 'url': 'https://daphnecaruanagalizia.com/2009/10/apologists-and-apologies/', 'title': 'Apologists and apologies'}
{'date': '2009-10-22', 'url': 'https://daphnecaruanagalizia.com/2009/10/bring-out-the-palm-fronds-%e2%80%93-we%e2%80%99ve-got-the-donkey-already/', 'title': 'Bring out the palm fronds – we’ve got the donkey already'}
{'date': '2009-10-18', 'url': 'https://daphnecaruanagalizia.com/2009/10/define-%e2%80%98apology%e2%80%99/', 'title': 'Define ‘apology’'}
{'date': '2009-10-16', 'url': 'https://daphnecaruanagalizia.com/2009/10/tell-us-something-we-dont-know-sir/', 'title': "Tell us something we DON'T know, sir"}
{'date': '2009-10-16', 'url': 'https://daphnecaruanagalizia.com/2009/10/the-ex-super-one-hack-and-current-super-one-boss-reknits-his-hymen-at-the-tumas-foundation/', 'title': 'The ex Super One hack and current Super One boss reknits his hymen at the Tumas Foundation'}
{'date': '2009-10-15', 'url': 'https://daphnecaruanagalizia.com/2009/10/and-heres-the-other-grima-brother-with-his-half-assed-excuses-again/', 'title': "And here's the other Grima brother, with his half-assed excuses again: it was the 'loose cannons' wot did it"}
{'date': '2009-10-15', 'url': 'https://daphnecaruanagalizia.com/2009/10/so-hes-a-political-observer-now-is-he/', 'title': "So he's a 'political observer' now, is he?"}
{'date': '2009-10-15', 'url': 'https://daphnecaruanagalizia.com/2009/10/it%e2%80%99s-not-about-honesty-it%e2%80%99s-about-commonsense/', 'title': 'It’s not about honesty. It’s about commonsense.'}
https://daphnecaruanagalizia.com/2009/11
{'date': '2009-11-29', 'url': 'https://daphnecaruanagalizia.com/2009/11/maltese-radicals-%e2%80%93-an-oxymoron/', 'title': 'Maltese radicals – an oxymoron'}
{'date': '2009-11-28', 'url': 'https://daphnecaruanagalizia.com/2009/11/iljunfant-tal-ustja/', 'title': 'Iljunfant tal-ustja'}
{'date': '2009-11-27', 'url': 'https://daphnecaruanagalizia.com/2009/11/forget-the-old-edwardians-this-is-a-message-for-my-former-classmates/', 'title': 'Forget the Old Edwardians, this is a message for my former classmates'}
{'date': '2009-11-27', 'url': 'https://daphnecaruanagalizia.com/2009/11/heres-an-idea-for-wheres-everybody/', 'title': "Here's an idea for Where's Everybody"}
{'date': '2009-11-27', 'url': 'https://daphnecaruanagalizia.com/2009/11/iva-hija-nibaghtuh-ir-richmond-foundation-jonqos/', 'title': 'Iva hija, nibaghtuh ir-Richmond Foundation jonqos'}
{'date': '2009-11-27', 'url': 'https://daphnecaruanagalizia.com/2009/11/oh-how-jolly-a-teddy-bears-picnic-of-old-edwardian-felons-at-mount-carmel/', 'title': "Oh, how jolly! A teddy-bears' picnic of Old Edwardian felons at Mount Carmel"}
{'date': '2009-11-26', 'url': 'https://daphnecaruanagalizia.com/2009/11/preferential-treatment-hes-wangled-his-way-into-mount-carmel-instead-of-corradino/', 'title': "Preferential treatment: he's wangled his way into Mount Carmel instead of Corradino"}
{'date': '2009-11-26', 'url': 'https://daphnecaruanagalizia.com/2009/11/hi-im-joseph-im-a-zaghzugh-and-now-ive-kept-the-king-of-spain-waiting/', 'title': "Hi, I'm Joseph, I'm a zaghzugh, and now I've kept the King of Spain waiting"}
{'date': '2009-11-26', 'url': 'https://daphnecaruanagalizia.com/2009/11/a-knave-until-the-end/', 'title': 'A knave until the end'}
{'date': '2009-11-26', 'url': 'https://daphnecaruanagalizia.com/2009/11/the-best-chief-justice-that-money-can-buy/', 'title': 'The best chief justice that money can buy'}
{'date': '2009-11-26', 'url': 'https://daphnecaruanagalizia.com/2009/11/din-bhal-ta-noel-arrigo-seeing-with-his-hands/', 'title': 'Din bhal ta\' Noel Arrigo – "seeing with his hands"'}
https://daphnecaruanagalizia.com/2009/12
{'date': '2009-12-27', 'url': 'https://daphnecaruanagalizia.com/2009/12/at-last-somebody-senior-puts-a-rocket-under-the-prats/', 'title': 'At last, somebody senior puts a rocket under the prats'}
{'date': '2009-12-27', 'url': 'https://daphnecaruanagalizia.com/2009/12/the-soap-to-end-them-all/', 'title': 'The soap to end them all'}
{'date': '2009-12-27', 'url': 'https://daphnecaruanagalizia.com/2009/12/the-alternative-to-civilised-behaviour/', 'title': 'The alternative to civilised behaviour'}
{'date': '2009-12-21', 'url': 'https://daphnecaruanagalizia.com/2009/12/don-quixote-heads-for-that-windmill/', 'title': 'Don Quixote heads for that windmill'}
{'date': '2009-12-20', 'url': 'https://daphnecaruanagalizia.com/2009/12/truly-insufferable/', 'title': 'Truly insufferable'}
{'date': '2009-12-17', 'url': 'https://daphnecaruanagalizia.com/2009/12/the-ego-versus-the-organisation/', 'title': 'The ego versus the organisation'}
{'date': '2009-12-16', 'url': 'https://daphnecaruanagalizia.com/2009/12/would-they-have-been-so-careless-if-he-were-a-young-maltese-man/', 'title': 'Would they have been so careless if he were a young Maltese man?'}
{'date': '2009-12-14', 'url': 'https://daphnecaruanagalizia.com/2009/12/a-little-lesson-for-saviour-sub-judice-balzan/', 'title': "A little lesson for Saviour 'sub judice' Balzan"}
{'date': '2009-12-14', 'url': 'https://daphnecaruanagalizia.com/2009/12/thats-the-spirit/', 'title': "That's the spirit"}
{'date': '2009-12-13', 'url': 'https://daphnecaruanagalizia.com/2009/12/injoranza-tal-biza/', 'title': 'Mind your own business'}
{'date': '2009-12-13', 'url': 'https://daphnecaruanagalizia.com/2009/12/when-bush-and-gorbachev-breached-our-neutrality-clause/', 'title': 'When Bush and Gorbachev breached our neutrality clause'}
https://daphnecaruanagalizia.com/2010/1
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/marisa-tries-to-earn-her-cash/', 'title': 'Marisa tries to earn her cash'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/normal-service-will-be-resumed-shortly-2/', 'title': 'Normal service will be resumed shortly'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/another-day-another-man/', 'title': 'Another day, another man'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/bhalissa-l-magistrata-msiefra/', 'title': 'Bhalissa, l-magistrata msiefra'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/oh-dear-see-what-i-mean-about-old-people-and-facebook/', 'title': 'Oh dear – see what I mean about old people and Facebook?'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/i-dont-think-middle-aged-people-should-be-allowed-anywhere-near-facebook/', 'title': "I don't think middle-aged people should be allowed anywhere near Facebook"}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/we-need-a-commitment-from-the-labour-party/', 'title': 'We need a commitment from the Labour Party'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/tantantara-il-kejk-tan-nejk/', 'title': 'Tantantara! Il-kejk tan-nejk'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/letting-it-all-hang-out/', 'title': 'Letting it all hang out'}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/real-estate-magnate-sandro-chetcuti-throws-groovy-shapes-on-consuelos-dancefloor/', 'title': "Real estate magnate Sandro Chetcuti throws groovy shapes on Consuelo's dancefloor"}
{'date': '2010-01-31', 'url': 'https://daphnecaruanagalizia.com/2010/01/consie-dancing-with-a-labour-party-candidate/', 'title': 'Consie dancing with a Labour Party candidate'}
https://daphnecaruanagalizia.com/2010/2
{'date': '2010-02-28', 'url': 'https://daphnecaruanagalizia.com/2010/02/mario-philip-and-the-people/', 'title': 'Mario Philip and The People'}
{'date': '2010-02-28', 'url': 'https://daphnecaruanagalizia.com/2010/02/you-can%e2%80%99t-use-hindsight-to-write-a-20-year-plan/', 'title': 'You can’t use hindsight to write a 20-year plan'}
{'date': '2010-02-27', 'url': 'https://daphnecaruanagalizia.com/2010/02/ah-but-judge-herrera-set-his-daughter-a-different-example-to-gavins-father/', 'title': "Ah, but Judge Herrera set his daughter a different example to Gavin's father"}
{'date': '2010-02-26', 'url': 'https://daphnecaruanagalizia.com/2010/02/guess-what-friends-muscat-now-has-a-20-year-plan/', 'title': 'Guess what, friends? Muscat now has a 20-year plan.'}
{'date': '2010-02-25', 'url': 'https://daphnecaruanagalizia.com/2010/02/oh-go-on-joseph-put-your-money-where-your-mouth-is/', 'title': 'Oh go on, Joseph. Put your money where your mouth is.'}
{'date': '2010-02-24', 'url': 'https://daphnecaruanagalizia.com/2010/02/akbar-zib-on-super-one-right-now/', 'title': 'Akbar Zib on Super One right now'}
{'date': '2010-02-24', 'url': 'https://daphnecaruanagalizia.com/2010/02/nahseb-musumeci-dalwaqt-jissieheb-mal-karizmatici/', 'title': 'Nahseb Musumeci dalwaqt jissieheb mal-Karizmatici'}
{'date': '2010-02-24', 'url': 'https://daphnecaruanagalizia.com/2010/02/robert-pokes-roderick/', 'title': 'Robert pokes Roderick'}
{'date': '2010-02-24', 'url': 'https://daphnecaruanagalizia.com/2010/02/id-deputat-mexxej-tal-progressivi-bil-lancboks/', 'title': 'Id-deputat mexxej tal-progressivi bil-lencboks'}
{'date': '2010-02-23', 'url': 'https://daphnecaruanagalizia.com/2010/02/quiz-question-on-robert-musumecis-facebook-wall-ikollok-terda-lil-robert-terdaw/', 'title': "Quiz question on Robert Musumeci's Facebook wall: Ikollok terda lil Robert terdaw?"}
{'date': '2010-02-23', 'url': 'https://daphnecaruanagalizia.com/2010/02/joseph-muscat-cool-calm-collected-andsomething-else-that-begins-with-c-no-not-chav-though-that-too/', 'title': 'Joseph Muscat: cool, calm, collected and….something else that begins with C (no, not chav, though that too)'}
https://daphnecaruanagalizia.com/2010/3
{'date': '2010-03-31', 'url': 'https://daphnecaruanagalizia.com/2010/03/no-names-no-credibility-stop-project-piano-a-typically-cunning-plan-by-labours-crack-team-of-public-affairs-wizards/', 'title': "No names, no credibility – Stop Project Piano: a typically 'cunning plan' by Labour's crack team of public affairs wizards"}
{'date': '2010-03-31', 'url': 'https://daphnecaruanagalizia.com/2010/03/the-latest-devastating-broadside-from-joseph-muscats-a-team-of-screwed-up-morons/', 'title': "The latest 'devastating broadside' from Joseph Muscat's A-team of screwed-up morons"}
{'date': '2010-03-31', 'url': 'https://daphnecaruanagalizia.com/2010/03/alex-saliba-of-forum-zghazagh-laburisti-promoting-a-homophobic-blog-while-pretending-to-be-supportive-of-gay-rights/', 'title': 'Alex Saliba of Forum Zghazagh Laburisti: promoting a homophobic blog while pretending to be supportive of gay rights'}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/you-wont-believe-this-but/', 'title': "You won't believe this, but…."}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/and-now-a-message-from-the-man-those-crass-idiots-think-is-my-son-or-my-husband-they-cant-decide-which/', 'title': "And now, a message from the man those crass idiots think is my son or my husband (they can't decide which)"}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/a-message-from-my-father/', 'title': 'A message from my father'}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/heres-the-proof/', 'title': "Here's the proof"}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/labours-crack-team-of-dunces-does-it-again/', 'title': "Labour's crack team of dunces does it again"}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/labours-axis-of-evil/', 'title': "Labour's 'axis of evil'"}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/what-do-you-mean-super-one-and-maltastar-have-a-code-of-ethics/', 'title': 'What, do you mean Super One and Maltastar have a code of ethics?'}
{'date': '2010-03-30', 'url': 'https://daphnecaruanagalizia.com/2010/03/after-id-duluri-tal-belt-this-friday-consuelo-ghal-fuq-l-gholja-tas-salib-ghal-mixja-tal-gimgha-l-kbira/', 'title': 'After id-Duluri tal-Belt, this Friday Consuelo ghal-fuq l-Gholja tas-Salib ghal-mixja tal-Gimgha l-Kbira'}
https://daphnecaruanagalizia.com/2010/4
{'date': '2010-04-30', 'url': 'https://daphnecaruanagalizia.com/2010/04/jason-shows-off-his-people-skills/', 'title': 'Jason shows off his people skills'}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/stay-out-of-the-pigeonhole-karl/', 'title': 'Stay out of the pigeonhole, Karl'}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/super-one-does-a-bit-of-whoring-for-a-change/', 'title': 'Super One does a bit of whoring – for a change'}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/more-from-wacko-nation-marlene-pullicino-her-parrrrrtnerrrr-the-count-of-montekristo-and-tal-festi/', 'title': 'More from Wacko Nation: Marlene Pullicino, her paRRRRRtneRRRR, the Count of Montekristo and tal-festi'}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/the-empty-vessel-makes-yet-another-sound/', 'title': 'The Empty Vessel makes yet another sound'}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/malta-today-grinds-another-axe-this-time-its-tarcisio-mifsuds/', 'title': "Malta Today grinds another axe – this time it's Tarcisio Mifsud's"}
{'date': '2010-04-29', 'url': 'https://daphnecaruanagalizia.com/2010/04/getting-away-with-murder/', 'title': 'Getting away with murder'}
{'date': '2010-04-28', 'url': 'https://daphnecaruanagalizia.com/2010/04/buying-handbags-for-the-far-right-make-sure-theyre-not-black/', 'title': "Buying handbags for the Far Right – make sure they're not black"}
{'date': '2010-04-28', 'url': 'https://daphnecaruanagalizia.com/2010/04/denis-catania-of-new-york-demands-government-action-against-the-prostitutes-of-gzira/', 'title': 'Denis Catania of New York demands government action against the prostitutes of Gzira'}
{'date': '2010-04-28', 'url': 'https://daphnecaruanagalizia.com/2010/04/the-grand-obsession-of-a-political-party-with-a-lone-columnist/', 'title': 'The grand obsession of a political party with a lone columnist'}
{'date': '2010-04-27', 'url': 'https://daphnecaruanagalizia.com/2010/04/anglu-inspector-gadget-farrugia-just-sack-him-for-heavens-sake/', 'title': "Anglu 'Inspector Gadget' Farrugia: just sack him, for heaven's sake"}
https://daphnecaruanagalizia.com/2010/5
{'date': '2010-05-31', 'url': 'https://daphnecaruanagalizia.com/2010/05/omg-spettore-gadget-strikes-again/', 'title': 'OMG. Spettore Gadget strikes again.'}
{'date': '2010-05-30', 'url': 'https://daphnecaruanagalizia.com/2010/05/hosomekswali/', 'title': 'Hosomekswali'}
{'date': '2010-05-30', 'url': 'https://daphnecaruanagalizia.com/2010/05/ship-repair-%e2%80%93-it%e2%80%99s-not-pastizzi-and-fenek/', 'title': 'Ship repair – it’s not pastizzi and fenek'}
{'date': '2010-05-30', 'url': 'https://daphnecaruanagalizia.com/2010/05/abortion-and-a-spot-of-shopping/', 'title': 'Abortion and a spot of shopping'}
{'date': '2010-05-29', 'url': 'https://daphnecaruanagalizia.com/2010/05/theyre-pouring-in-another-star-comment/', 'title': "They're pouring in: another star comment"}
{'date': '2010-05-29', 'url': 'https://daphnecaruanagalizia.com/2010/05/rival-comment-of-the-week/', 'title': 'Rival Comment of the Week'}
{'date': '2010-05-29', 'url': 'https://daphnecaruanagalizia.com/2010/05/ghandek-pancer-gib-l-istepni/', 'title': 'Ghandek pancer? Gib l-istepni.'}
{'date': '2010-05-29', 'url': 'https://daphnecaruanagalizia.com/2010/05/hitler-would-have-gassed-the-lot-of-them/', 'title': 'Hitler would have gassed the lot of them'}
{'date': '2010-05-28', 'url': 'https://daphnecaruanagalizia.com/2010/05/comment-of-the-week-2/', 'title': 'Comment of the Week'}
{'date': '2010-05-27', 'url': 'https://daphnecaruanagalizia.com/2010/05/a-new-social-group-the-irkotti/', 'title': 'A new social group: the Irkotti'}
{'date': '2010-05-26', 'url': 'https://daphnecaruanagalizia.com/2010/05/how-did-i-miss-this/', 'title': 'How did I miss this?'}
https://daphnecaruanagalizia.com/2010/6
{'date': '2010-06-28', 'url': 'https://daphnecaruanagalizia.com/2010/06/how-poor-is-poor/', 'title': 'How poor is poor?'}
{'date': '2010-06-24', 'url': 'https://daphnecaruanagalizia.com/2010/06/the-european-court-of-human-rights-chamber-judgement-homosexual-couple-not-discriminated-against-by-denial-of-the-right-to-marry/', 'title': 'The European Court of Human Rights, chamber judgement: Homosexual couple not discriminated against by denial of the right to marry'}
{'date': '2010-06-24', 'url': 'https://daphnecaruanagalizia.com/2010/06/sometimes-it%e2%80%99s-best-to-hold-your-peace-forever/', 'title': 'Sometimes, it’s best to hold your peace forever'}
{'date': '2010-06-22', 'url': 'https://daphnecaruanagalizia.com/2010/06/iceland-norwaymhux-xorta-skond-maltastar/', 'title': 'Iceland, Norway…mhux xorta, skond Maltastar'}
{'date': '2010-06-21', 'url': 'https://daphnecaruanagalizia.com/2010/06/weights-and-measures/', 'title': 'WEIGHTS AND MEASURES'}
{'date': '2010-06-21', 'url': 'https://daphnecaruanagalizia.com/2010/06/let-the-market-right-itself/', 'title': 'Let the market right itself'}
{'date': '2010-06-17', 'url': 'https://daphnecaruanagalizia.com/2010/06/guido-the-scarlet-pimpernel-in-secret-assignations-with-solitary-palace-maiden/', 'title': 'Guido the Scarlet Pimpernel in secret assignations with solitary palace maiden'}
{'date': '2010-06-16', 'url': 'https://daphnecaruanagalizia.com/2010/06/oh-dear-weve-made-the-headlines-again/', 'title': "Oh dear, we've made the headlines again"}
{'date': '2010-06-15', 'url': 'https://daphnecaruanagalizia.com/2010/06/il-pajjiz-tal-valuri-i-wonder-what-the-numbers-are-for-arson-attempts-on-homes/', 'title': 'Il-pajjiz tal-valuri – I wonder what the numbers are for arson attempts on homes?'}
{'date': '2010-06-14', 'url': 'https://daphnecaruanagalizia.com/2010/06/badass-soldier-%e2%80%93-one-to-watch/', 'title': 'Badass Soldier – One To Watch'}
{'date': '2010-06-14', 'url': 'https://daphnecaruanagalizia.com/2010/06/cant-afford-steak-but-a-big-screen-tv-is-fine/', 'title': "Can't afford steak, but a big-screen TV is fine"}
https://daphnecaruanagalizia.com/2010/7
{'date': '2010-07-31', 'url': 'https://daphnecaruanagalizia.com/2010/07/after-mounting-the-goat-he-undressed-her-pyjama/', 'title': "After mounting the goat, he 'undressed her pyjama'"}
{'date': '2010-07-29', 'url': 'https://daphnecaruanagalizia.com/2010/07/the-jelly-baby-celebrates/', 'title': 'The jelly baby celebrates'}
{'date': '2010-07-28', 'url': 'https://daphnecaruanagalizia.com/2010/07/il-valuri-tal-maltin-jaqq-xmisthija/', 'title': "Il-valuri tal-Maltin: jaqq, x'misthija"}
{'date': '2010-07-27', 'url': 'https://daphnecaruanagalizia.com/2010/07/tar-razzett-tal-hbiberija-ghandhom-il-mounting-goats/', 'title': 'Tar-Razzett il-Hbiberija ghandhom il-MOUNTING goats'}
{'date': '2010-07-26', 'url': 'https://daphnecaruanagalizia.com/2010/07/one-for-the-parish-priest-god-doesnt-want-bikinis-either/', 'title': "One for the parish priest: GOD DOESN'T WANT BIKINIS EITHER"}
{'date': '2010-07-26', 'url': 'https://daphnecaruanagalizia.com/2010/07/numbers-and-noises/', 'title': 'Numbers and noises'}
{'date': '2010-07-23', 'url': 'https://daphnecaruanagalizia.com/2010/07/what-is-a-stabbed-arab/', 'title': "What is a 'stabbed Arab'?"}
{'date': '2010-07-22', 'url': 'https://daphnecaruanagalizia.com/2010/07/no-potatoes-are-not-made-in-factories/', 'title': 'No, potatoes are not made in factories'}
{'date': '2010-07-21', 'url': 'https://daphnecaruanagalizia.com/2010/07/hawn-malta-ghandna-tezor-ghax-mghandniex-id-divorzju/', 'title': "Hawn Malta ghandna tezor ghax m'ghandniex id-divorzju"}
{'date': '2010-07-21', 'url': 'https://daphnecaruanagalizia.com/2010/07/a-hi5-comment-from-a-doctor-joseph-fan/', 'title': "A hi5 comment from a 'Doctor Joseph' fan"}
{'date': '2010-07-19', 'url': 'https://daphnecaruanagalizia.com/2010/07/a-little-brain-is-a-dangerous-thing/', 'title': 'A little brain is a dangerous thing'}
https://daphnecaruanagalizia.com/2010/8
{'date': '2010-08-31', 'url': 'https://daphnecaruanagalizia.com/2010/08/is-michelle-muscat-labours-new-deputat-mexxej/', 'title': "Is Michelle Muscat Labour's new deputat mexxej?"}
{'date': '2010-08-31', 'url': 'https://daphnecaruanagalizia.com/2010/08/esebizzjoni-ta-emblemi-sottomessi-fil-process-hurry-while-stocks-last/', 'title': "Esebizzjoni ta' emblemi sottomessi fil-process – hurry, while stocks last"}
{'date': '2010-08-29', 'url': 'https://daphnecaruanagalizia.com/2010/08/liberty-equality-and-fraternity-%e2%80%93-but-not-if-you%e2%80%99re-roma/', 'title': 'Liberty, equality and fraternity – but not if you’re Roma'}
{'date': '2010-08-26', 'url': 'https://daphnecaruanagalizia.com/2010/08/oh-my-god-a-naked-woman-in-a-tunnel-the-silly-season-gets-sillier/', 'title': 'Oh My God, a naked woman in a tunnel! The silly season gets sillier.'}
{'date': '2010-08-26', 'url': 'https://daphnecaruanagalizia.com/2010/08/choosing-a-badge-%e2%80%93-that%e2%80%99s-a-tough-one/', 'title': 'Choosing a badge – that’s a tough one'}
{'date': '2010-08-23', 'url': 'https://daphnecaruanagalizia.com/2010/08/scout%e2%80%99s-honour-no-oil-spills/', 'title': 'Scout’s honour: no oil spills'}
{'date': '2010-08-23', 'url': 'https://daphnecaruanagalizia.com/2010/08/foreigners-go-home/', 'title': 'Foreigners go home'}
{'date': '2010-08-23', 'url': 'https://daphnecaruanagalizia.com/2010/08/no-room-for-fatalism/', 'title': 'No room for fatalism'}
{'date': '2010-08-13', 'url': 'https://daphnecaruanagalizia.com/2010/08/mosta-fireworks-factory-blows-up/', 'title': 'Mosta Fireworks factory blows up'}
{'date': '2010-08-12', 'url': 'https://daphnecaruanagalizia.com/2010/08/malta-in-2010-where-skinny-dipping-gets-you-a-prison-sentence/', 'title': 'Malta in 2010: where skinny-dipping gets you a prison sentence'}
{'date': '2010-08-12', 'url': 'https://daphnecaruanagalizia.com/2010/08/further-to-our-earlier-discussion-on-pocket-monsters/', 'title': 'Further to our earlier discussion on pocket monsters'}
https://daphnecaruanagalizia.com/2010/9
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/come-the-revolution/', 'title': 'Come the revolution – AUX ARMES, CITOYENS!'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/amazing-how-that-sorry-lot-identify-themselves-with-the-british-labour-party/', 'title': 'Amazing how that sorry lot identify themselves with the British Labour Party'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/so-thats-what-happened-to-the-water-and-electricity-money/', 'title': "So that's what happened to the water and electricity money!"}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/more-newspeak-from-maltastar/', 'title': 'More Newspeak from Maltastar'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/after-elton-john-and-the-golden-circle-jet-set-tony-flies-off-to-protest/', 'title': 'After Elton John and the Golden Circle: Jet Set Tony flies off to protest'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/a-parliament-of-mops-and-dusters/', 'title': 'A parliament of mops and dusters'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/maltastar-now-reduced-to-lying-outright/', 'title': 'Maltastar: Now reduced to lying outright'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/yes-there-is-a-solution-to-the-cleaning-lady-problem/', 'title': 'Yes, there is a solution to the cleaning lady problem'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/robert-arrigo-what-a-mistake-that-was/', 'title': 'Robert Arrigo: what a mistake that was'}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/its-about-time-somebody-told-john-dalli-where-to-shove-his-rabid-ambition/', 'title': "It's about time somebody told John Dalli where to shove his rabid ambition"}
{'date': '2010-09-30', 'url': 'https://daphnecaruanagalizia.com/2010/09/john-dalli-the-ex-girlfriend-in-the-room/', 'title': 'John Dalli: the ex-girlfriend in the room'}
https://daphnecaruanagalizia.com/2010/10
{'date': '2010-10-31', 'url': 'https://daphnecaruanagalizia.com/2010/10/the-one-word-warriors/', 'title': 'The One-Word Warriors'}
{'date': '2010-10-30', 'url': 'https://daphnecaruanagalizia.com/2010/10/kemm-saru-jifmu-fit-tenders-is-slavag-tal-labour-alla-jbierek/', 'title': 'Kemm saru jifhmu fit-tenders is-slavag tal-Labour, Alla jbierek'}
{'date': '2010-10-29', 'url': 'https://daphnecaruanagalizia.com/2010/10/i-am-without-words/', 'title': 'I am without words'}
{'date': '2010-10-29', 'url': 'https://daphnecaruanagalizia.com/2010/10/perhaps-hollow-man-joseph-muscat-would-like-to-tell-us-what-the-budget-would-have-been-like-had-we-all-followed-his-advice-and-voted-no-to-eu-membership/', 'title': 'Perhaps Hollow Man Joseph Muscat would like to tell us what the Budget would have been like had we all followed his advice and voted No to EU membership?'}
{'date': '2010-10-29', 'url': 'https://daphnecaruanagalizia.com/2010/10/guest-post-why-it-would-be-a-bad-idea-to-reduce-income-tax-now/', 'title': 'Guest post: Why it would be a bad idea to reduce income tax now'}
{'date': '2010-10-28', 'url': 'https://daphnecaruanagalizia.com/2010/10/guest-post-the-new-dry-docks/', 'title': 'Guest Post: The New Dry Docks'}
{'date': '2010-10-28', 'url': 'https://daphnecaruanagalizia.com/2010/10/online-chatting-a-symptom-not-a-cause/', 'title': 'Online chatting: a symptom, not a cause'}
{'date': '2010-10-27', 'url': 'https://daphnecaruanagalizia.com/2010/10/il-wizz-ta-kurt-spicca-bla-bajd/', 'title': "Il-wizz ta' Kurt spicca bla bajd"}
{'date': '2010-10-26', 'url': 'https://daphnecaruanagalizia.com/2010/10/therealbudgetcom-ta-ras-kurt-farrugia/', 'title': "therealbudget.com ta' ras Kurt Farrugia"}
{'date': '2010-10-26', 'url': 'https://daphnecaruanagalizia.com/2010/10/labour-now-selling-to-morons-only/', 'title': 'Labour – now selling to morons only'}
{'date': '2010-10-26', 'url': 'https://daphnecaruanagalizia.com/2010/10/commentpicture-of-the-week-anglu-farrugia-stands-up-to-be-counted/', 'title': "Comment/picture of the week: Anglu Farrugia 'stands up to be counted'"}
https://daphnecaruanagalizia.com/2010/11
{'date': '2010-11-30', 'url': 'https://daphnecaruanagalizia.com/2010/11/brunch-with-prince-andrew-in-kyrgyzstan/', 'title': 'Brunch with Prince Andrew in Kyrgyzstan'}
{'date': '2010-11-30', 'url': 'https://daphnecaruanagalizia.com/2010/11/wikileaks/', 'title': 'Wikileaks'}
{'date': '2010-11-30', 'url': 'https://daphnecaruanagalizia.com/2010/11/the-truth-about-natural-childbirth/', 'title': 'The truth about natural childbirth'}
{'date': '2010-11-29', 'url': 'https://daphnecaruanagalizia.com/2010/11/after-baby-jesus-the-kidnapping-of-father-christmas/', 'title': 'After Baby Jesus: the kidnapping of Father Christmas'}
{'date': '2010-11-29', 'url': 'https://daphnecaruanagalizia.com/2010/11/how-to-live-large-off-the-eu/', 'title': "How to live large off 'the EU'"}
{'date': '2010-11-29', 'url': 'https://daphnecaruanagalizia.com/2010/11/silvio-parnis-sticks-it-up-where-the-sun-dont-shine/', 'title': "Silvio Parnis sticks it up where the sun don't shine"}
{'date': '2010-11-28', 'url': 'https://daphnecaruanagalizia.com/2010/11/the-snarling-of-a-cornered-rat/', 'title': 'The snarling of a cornered rat'}
{'date': '2010-11-28', 'url': 'https://daphnecaruanagalizia.com/2010/11/the-politics-of-envy-again/', 'title': 'The politics of envy – again'}
{'date': '2010-11-25', 'url': 'https://daphnecaruanagalizia.com/2010/11/enough-about-the-sand/', 'title': 'Enough about the sand'}
{'date': '2010-11-23', 'url': 'https://daphnecaruanagalizia.com/2010/11/michael-gonzi-%e2%80%93-never-mind/', 'title': 'Michael Gonzi – never mind'}
{'date': '2010-11-23', 'url': 'https://daphnecaruanagalizia.com/2010/11/oh-my-is-that-a-socialist-watch/', 'title': 'Oh my, is that a socialist watch?'}
https://daphnecaruanagalizia.com/2010/12
{'date': '2010-12-06', 'url': 'https://daphnecaruanagalizia.com/2010/12/not-fireworks-this-time/', 'title': 'Not fireworks, this time'}
{'date': '2010-12-06', 'url': 'https://daphnecaruanagalizia.com/2010/12/uff-xi-dwejjaq-a-customer/', 'title': 'Uff, xi dwejjaq – a customer'}
{'date': '2010-12-03', 'url': 'https://daphnecaruanagalizia.com/2010/12/what-a-crying-shame-unbelievable/', 'title': 'What a crying shame – unbelievable'}
{'date': '2010-12-03', 'url': 'https://daphnecaruanagalizia.com/2010/12/a-miser-to-the-end/', 'title': 'A miser to the end'}
{'date': '2010-12-02', 'url': 'https://daphnecaruanagalizia.com/2010/12/toni-abela-has-a-lovely-day-out/', 'title': 'Toni Abela has a lovely day out'}
{'date': '2010-12-02', 'url': 'https://daphnecaruanagalizia.com/2010/12/comebacks-are-for-gordon-gekko/', 'title': 'Comebacks are for Gordon Gekko'}
{'date': '2010-12-01', 'url': 'https://daphnecaruanagalizia.com/2010/12/the-truth-about-labour-its-cetta-ghand-tal-growser/', 'title': "The truth about Labour: it's Cetta ghand tal-growser"}
https://daphnecaruanagalizia.com/2011/1
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/those-slitty-eyed-corporations-all-look-the-same-to-evarist/', 'title': 'Those slitty-eyed corporations all look the same to Evarist'}
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/rock-bottom/', 'title': 'Rock bottom'}
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/spare-us-the-hypocrisy/', 'title': 'Spare us the hypocrisy'}
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/ronnie-raids-the-quotes-cupboard-again/', 'title': 'Ronnie raids the Quotes Cupboard again'}
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/after-toni-abelas-brilliant-idea-for-labour-supermarkets/', 'title': "After Toni Abela's brilliant idea for Labour supermarkets…."}
{'date': '2011-01-31', 'url': 'https://daphnecaruanagalizia.com/2011/01/sigh/', 'title': 'Sigh'}
{'date': '2011-01-30', 'url': 'https://daphnecaruanagalizia.com/2011/01/the-weakest-of-arguments-for-divorce-marriage/', 'title': 'The weakest of arguments for divorce: marriage'}
{'date': '2011-01-30', 'url': 'https://daphnecaruanagalizia.com/2011/01/robber-barons/', 'title': 'Robber barons'}
{'date': '2011-01-30', 'url': 'https://daphnecaruanagalizia.com/2011/01/al-jazeera-reports-that-mubarak-is-to-flee-to-israel/', 'title': 'Al Jazeera reports that Mubarak is to flee to Israel'}
{'date': '2011-01-30', 'url': 'https://daphnecaruanagalizia.com/2011/01/thats-small-minded-cretinism-for-you/', 'title': "That's small-minded cretinism for you"}
{'date': '2011-01-29', 'url': 'https://daphnecaruanagalizia.com/2011/01/mubarak-will-he-survive/', 'title': 'Mubarak – will he survive?'}
https://daphnecaruanagalizia.com/2011/2
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/so-what-is-il-partit-ta-joseph-actually-doing/', 'title': "So what is Il-Partit ta' Joseph actually doing?"}
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/joe-sammut-rises-to-the-occasion-and-please-no-smart-remarks/', 'title': 'Joe Sammut rises to the occasion (and please, no smart remarks)'}
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/grtu-kickstarts-maltas-humanitarian-aid-effort/', 'title': "GRTU kickstarts Malta's humanitarian aid effort"}
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/the-debearded-wonder-and-his-army-of-lord-of-the-rings-afiscionados-and-che-wannabes-are-planning-a-revoluzzjoni-kbira/', 'title': 'The debearded wonder and his army of Lord of the Rings aficionados and Che wannabes are planning a revoluzzjoni kbira'}
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/progressive-labour-after-stitch-bitch-its-books-looks/', 'title': "Progressive Labour: after Stitch & Bitch, it's Books & Looks"}
{'date': '2011-02-28', 'url': 'https://daphnecaruanagalizia.com/2011/02/a-major-shift-in-perception/', 'title': 'A major shift in perception'}
{'date': '2011-02-27', 'url': 'https://daphnecaruanagalizia.com/2011/02/strip-him-of-his-maltese-gongs/', 'title': 'Strip him of his Maltese gongs'}
{'date': '2011-02-27', 'url': 'https://daphnecaruanagalizia.com/2011/02/mela-xkienu-dawk-il-golden-years/', 'title': "Mela x'kienu, dawk il-Golden Years?"}
{'date': '2011-02-27', 'url': 'https://daphnecaruanagalizia.com/2011/02/they-should-have-employed-labours-communications-coconut/', 'title': "They should have employed Labour's communications coconut"}
{'date': '2011-02-27', 'url': 'https://daphnecaruanagalizia.com/2011/02/are-we-sitting-on-that-fence-or-are-we-impaled-on-it/', 'title': 'Are we sitting on that fence or are we impaled on it?'}
{'date': '2011-02-27', 'url': 'https://daphnecaruanagalizia.com/2011/02/lets-make-kmb-a-special-envoy/', 'title': "Let's make KMB a special envoy"}
https://daphnecaruanagalizia.com/2011/3
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/musa-kusa-and-pm-gonzi%e2%80%99s-friend-bagdadi-%e2%80%98envoys-of-death%e2%80%99/', 'title': 'Musa Kusa and Bagdadi: ‘envoys of death’'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/a-fighter-jet-isnt-welcome-but-a-nuclear-attack-submarine-is-fine-go-figure/', 'title': "A fighter jet isn't welcome, but a nuclear attack submarine is fine – go figure"}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/and-just-four-months-after-jum-il-helsien-gaddafi-snubs-mintoff/', 'title': 'And just four months after Jum Il-Helsien, Gaddafi snubs Mintoff'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/how-neutral-switzerland-saw-maltese-neutrality-in-1979-mr-mintoff-has-been-anxious-that-his-country-should-be-recognized-as-belonging-to-the-third-world/', 'title': 'How neutral Switzerland saw Maltese neutrality in 1979: "Mr Mintoff has been anxious that his country should be recognized as belonging to the Third World."'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/read-this-for-the-facts-about-31-march-1979-gaddafi-was-the-centrepiece-of-the-event/', 'title': 'Read this for the facts about 31 March 1979: Gaddafi was the centrepiece of the event'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/friendship-and-cooperation-with-a-failed-state/', 'title': 'Friendship and cooperation with a failed state'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/joseph-muscat-u-michelle-saru-hajkless-pronounced-as-one-word/', 'title': 'Joseph Muscat u Michelle saru hajkless (pronounced as one word)'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/joseph-muscat-has-spoken-about-libya-at-last-we-shouldnt-take-sides/', 'title': "Joseph Muscat has spoken about Libya at last: WE SHOULDN'T TAKE SIDES"}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/in-1979-mintoff-had-muammar-gaddafi-in-2011-joseph-muscat-has-mary-spiteri/', 'title': 'In 1979, Mintoff had Muammar Gaddafi. In 2011, Joseph Muscat has Mary Spiteri.'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/sneakers-on-the-ground/', 'title': 'Sneakers on the ground'}
{'date': '2011-03-31', 'url': 'https://daphnecaruanagalizia.com/2011/03/there-goes-musa-kusa-the-envoy-of-death/', 'title': "There goes Musa Kusa, the 'envoy of death'"}
https://daphnecaruanagalizia.com/2011/4
{'date': '2011-04-30', 'url': 'https://daphnecaruanagalizia.com/2011/04/what-does-john-paul-ii-have-to-do-with-the-price-of-eggs/', 'title': 'What does John Paul II have to do with the price of eggs?'}
{'date': '2011-04-28', 'url': 'https://daphnecaruanagalizia.com/2011/04/whoever-said-the-curia-was-fair/', 'title': 'Whoever said the Curia is fair?'}
{'date': '2011-04-28', 'url': 'https://daphnecaruanagalizia.com/2011/04/the-retreat-into-theocratric-thinking/', 'title': 'The retreat into theocratic thinking'}
{'date': '2011-04-26', 'url': 'https://daphnecaruanagalizia.com/2011/04/ejja-mmorru-drinkk-gol-pupp/', 'title': 'Ejja mmorru drinkk gol pupp'}
{'date': '2011-04-25', 'url': 'https://daphnecaruanagalizia.com/2011/04/the-moral-superiority-of-those-who-don%e2%80%99t-have-television/', 'title': 'The moral superiority of those who don’t have television'}
{'date': '2011-04-23', 'url': 'https://daphnecaruanagalizia.com/2011/04/no-to-divorce-thanks-to-the-yes-campaign/', 'title': 'No to divorce, thanks to the Yes campaign'}
{'date': '2011-04-18', 'url': 'https://daphnecaruanagalizia.com/2011/04/its-not-really-about-religion-is-it/', 'title': "It's not really about religion, is it"}
{'date': '2011-04-15', 'url': 'https://daphnecaruanagalizia.com/2011/04/il-kolonna-the-true-voice-of-the-labour-party-which-cannot-be-silenced/', 'title': 'Il-Kolonna: the true voice of the Labour Party, which cannot be silenced'}
{'date': '2011-04-15', 'url': 'https://daphnecaruanagalizia.com/2011/04/joint-statement-released-by-barack-obama-david-cameron-and-nicolas-sarkozy/', 'title': 'Joint statement by Barack Obama, David Cameron and Nicolas Sarkozy'}
{'date': '2011-04-15', 'url': 'https://daphnecaruanagalizia.com/2011/04/misurata-its-getting-worse/', 'title': "Misurata – it's getting worse"}
{'date': '2011-04-15', 'url': 'https://daphnecaruanagalizia.com/2011/04/melvyn-mangion/', 'title': 'Melvyn Mangion'}
https://daphnecaruanagalizia.com/2011/5
{'date': '2011-05-31', 'url': 'https://daphnecaruanagalizia.com/2011/05/if-one-mp-is-allowed-to-vote-no-or-abstain-then-so-are-they-all/', 'title': 'If one MP is allowed to vote No or abstain, then so are they all'}
{'date': '2011-05-31', 'url': 'https://daphnecaruanagalizia.com/2011/05/star-comment-3/', 'title': 'Star comments *****'}
{'date': '2011-05-31', 'url': 'https://daphnecaruanagalizia.com/2011/05/another-comment-of-the-day/', 'title': "Another 'comment of the day'"}
{'date': '2011-05-31', 'url': 'https://daphnecaruanagalizia.com/2011/05/comments-of-the-day-both-from-people-i-know/', 'title': 'Comments of the day: from people I know'}
{'date': '2011-05-30', 'url': 'https://daphnecaruanagalizia.com/2011/05/eur4-million-on-a-referendum-and-theyre-going-to-vote-with-their-conscience-anyway/', 'title': "EUR4 million on a referendum, and they're going to vote with their conscience anyway"}
{'date': '2011-05-30', 'url': 'https://daphnecaruanagalizia.com/2011/05/drop-the-make-up-joseph/', 'title': 'Drop the make-up, Joseph'}
{'date': '2011-05-30', 'url': 'https://daphnecaruanagalizia.com/2011/05/poor-filipinos-theyve-been-left-to-cope-alone-with-the-fire-and-brimstone/', 'title': "Poor Filipinos – they've been left to cope alone with the fire and brimstone"}
{'date': '2011-05-30', 'url': 'https://daphnecaruanagalizia.com/2011/05/what-a-nerve/', 'title': 'What a nerve'}
{'date': '2011-05-29', 'url': 'https://daphnecaruanagalizia.com/2011/05/joseph-turns-brown/', 'title': 'Joseph turns brown – hair, skin and eyes, the lot'}
{'date': '2011-05-29', 'url': 'https://daphnecaruanagalizia.com/2011/05/i-take-it-joseph-muscat-doesnt-need-five-years-of-hindsight-for-this-referendum-result/', 'title': "I take it Joseph Muscat doesn't need five years of hindsight for this referendum result"}
{'date': '2011-05-29', 'url': 'https://daphnecaruanagalizia.com/2011/05/a-message-to-those-mps-who-plan-to-vote-no-and-to-the-party-leaders-who-plan-to-allow-them-to-do-so-instead-of-cracking-the-party-whip/', 'title': 'A message to those MPs who plan to vote No to the divorce bill, and to the party leaders who plan to allow them to do so instead of cracking the party whip'}
https://daphnecaruanagalizia.com/2011/6
{'date': '2011-06-30', 'url': 'https://daphnecaruanagalizia.com/2011/06/this-is-the-kind-of-ignorance-were-always-up-against-the-kind-of-ignorance-which-brings-labour-to-power/', 'title': "This is the kind of ignorance we're always up against – the kind of ignorance which brings Labour to power"}
{'date': '2011-06-30', 'url': 'https://daphnecaruanagalizia.com/2011/06/youve-got-to-be-smart-to-be-labour/', 'title': "You've got to be smart to be Labour"}
{'date': '2011-06-30', 'url': 'https://daphnecaruanagalizia.com/2011/06/well-what-do-you-know-weve-got-ourselves-another-labour-leader-with-hair-neurosis/', 'title': "Well, what do you know? We've got ourselves ANOTHER Labour leader with hair neurosis."}
{'date': '2011-06-27', 'url': 'https://daphnecaruanagalizia.com/2011/06/joseph-muscat-weighed-down-by-the-affairs-of-state/', 'title': 'Joseph Muscat – weighed down by the affairs of state'}
{'date': '2011-06-26', 'url': 'https://daphnecaruanagalizia.com/2011/06/grounded/', 'title': 'Grounded'}
{'date': '2011-06-26', 'url': 'https://daphnecaruanagalizia.com/2011/06/yes-joseph-muscat-did-go-on-about-immigration-with-ed-miliband/', 'title': 'Yes, Joseph Muscat DID go on about immigration with Ed Miliband'}
{'date': '2011-06-25', 'url': 'https://daphnecaruanagalizia.com/2011/06/qabel-kont-nohrog-bir-rollers-u-issa-ma-nistghax-michelle-muscat/', 'title': '"Qabel kont nohrog bir-rollers u issa ma nistghax" – Michelle Muscat'}
{'date': '2011-06-24', 'url': 'https://daphnecaruanagalizia.com/2011/06/joseph-he-meets-red-ed-the-kap-tal-oppozizzjoni-of-one-of-the-74-mamber-states-of-the-eu/', 'title': 'Doctor Joseph Muscat he meets Rad Ad, the kap tal-Oppozizzjoni of one of the 74 mamber states of the EU'}
{'date': '2011-06-24', 'url': 'https://daphnecaruanagalizia.com/2011/06/hot-news-from-labour-the-eu-has-74-member-states/', 'title': 'Hot news from Labour: the EU has 74 member states'}
{'date': '2011-06-24', 'url': 'https://daphnecaruanagalizia.com/2011/06/religion-and-the-fatherland-religio-et-patria-%e2%80%93-time-to-get-rid-of-that-one/', 'title': 'Religion and the Fatherland (Religio et Patria) – time to get rid of that one'}
{'date': '2011-06-22', 'url': 'https://daphnecaruanagalizia.com/2011/06/dont-do-as-i-do-do-as-i-say/', 'title': "Don't do as I do. Do as I say."}
https://daphnecaruanagalizia.com/2011/7
{'date': '2011-07-31', 'url': 'https://daphnecaruanagalizia.com/2011/07/horses-for-courses-2/', 'title': 'Horses for courses'}
{'date': '2011-07-31', 'url': 'https://daphnecaruanagalizia.com/2011/07/cyrus-engerer-cant-damage-labours-reputation-because-its-bad-enough-already/', 'title': "Cyrus Engerer can't damage Labour's reputation because it's bad enough already"}
{'date': '2011-07-31', 'url': 'https://daphnecaruanagalizia.com/2011/07/proset-jason-keep-it-up-i-am-right-behind-you-mosta-isa-hej-now-i-can-give-you-my-no-1/', 'title': 'PROSet JAson keep IT up i AM righT beHind you!!!!!! Mosta? iSa hej, NoW i can giVe you My No. 1!!!!!'}
{'date': '2011-07-31', 'url': 'https://daphnecaruanagalizia.com/2011/07/discovery-channel-how-animals-starve-under-gonzipn/', 'title': 'Discovery Channel: how animals starve under gOnZipN'}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/update-to-my-earlier-post-about-saviour-balzans-home-visit/', 'title': "Update to my earlier post about Saviour Balzan's 'home visit'"}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/no-cyrus-did-not-download-porn/', 'title': 'No, Cyrus did not download porn'}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/perhaps-you-didnt-think-it-possible-but-saviour-balzan-has-just-hit-a-new-low/', 'title': "Perhaps you didn't think it possible, but Saviour Balzan has just hit a new low"}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/dispatches-from-a-parallel-universe/', 'title': 'Dispatches from a parallel universe'}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/oh-dear-dear-keep-it-up-my-cyrus/', 'title': 'Oh dear, dear – "keep it up my Cyrus"'}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/comment-of-the-day-8/', 'title': 'Comment of the Day II'}
{'date': '2011-07-30', 'url': 'https://daphnecaruanagalizia.com/2011/07/comment-of-the-day-my-previous-post-refers/', 'title': 'Comment of the day (my previous post refers)'}
https://daphnecaruanagalizia.com/2011/8
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/oh-my-god/', 'title': "Oh. My. God. 'Kif thott barriera', a play in one act"}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/how-mintoff-started-with-gaddafi-as-he-meant-to-go-on-in-1971/', 'title': 'How Mintoff started with Gaddafi as he meant to go on – in 1971'}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/news-flash-labour-reveals-its-first-policy-se-jhottu-l-barrieri/', 'title': 'News Flash: Labour reveals its first policy. Se jhottu l-barrieri.'}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/let-me-through-im-not-an-eye-surgeon-im-a-tacky-whore/', 'title': '"Let me through! I\'m not an eye surgeon, I\'m a tacky whore!"'}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/updated-on-nanny-scalded-by-aline-gaddafi/', 'title': 'Updated on nanny scalded by Aline Gaddafi'}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/joe-sammut-badgers-the-government-for-visas-for-gaddafi-loyalists/', 'title': 'Joe Sammut badgers the government for visas for Gaddafi loyalists'}
{'date': '2011-08-31', 'url': 'https://daphnecaruanagalizia.com/2011/08/while-we-were-prudent/', 'title': 'While we were prudent'}
{'date': '2011-08-30', 'url': 'https://daphnecaruanagalizia.com/2011/08/comino/', 'title': 'Comino (does not feature tents, Jason Micallef, Natius Farrugia or Julia Farrugia)'}
{'date': '2011-08-30', 'url': 'https://daphnecaruanagalizia.com/2011/08/the-labour-party-a-hitman-for-a-candidate/', 'title': 'The Labour Party: a hitman for a candidate'}
{'date': '2011-08-30', 'url': 'https://daphnecaruanagalizia.com/2011/08/what-a-pity-xandir-malta-didnt-archive-its-footage/', 'title': "What a pity Xandir Malta didn't archive its footage"}
{'date': '2011-08-30', 'url': 'https://daphnecaruanagalizia.com/2011/08/funny-how-cyrus-didnt-take-to-that-podium-to-give-the-guests-his-views-on-sodomy/', 'title': "Funny how Cyrus didn't take to that podium to give the guests his views on sodomy"}
https://daphnecaruanagalizia.com/2011/9
{'date': '2011-09-30', 'url': 'https://daphnecaruanagalizia.com/2011/09/bribe-update-some-businessmen-those-are/', 'title': 'Bribe update: some businessmen, those are'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/13324/', 'title': 'Paying a bribe is as bad as taking it'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/how-i-wish-newspapers-would-join-the-dots-for-their-readers/', 'title': 'How I wish newspapers would join the dots for their readers'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/no-policies-it-must-be-a-catching-labour-disease/', 'title': 'No policies: it must be a catching Labour disease'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/joseph-muscat-on-libya-we-are-thick-skinned-and-wont-be-pressured-into-taking-sides/', 'title': 'Joseph Muscat on Libya: "We are thick-skinned and won\'t be pressured into taking sides."'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/oh-look/', 'title': 'Oh look!'}
{'date': '2011-09-29', 'url': 'https://daphnecaruanagalizia.com/2011/09/biex-inzomm-il-bilanc-heres-another-labour-promo/', 'title': 'Biex inzomm il-bilanc: here are more Labour promotional videos'}
{'date': '2011-09-28', 'url': 'https://daphnecaruanagalizia.com/2011/09/g-r-o-a-n-can-you-imagine-fenech-adami-or-gonzi-doing-this/', 'title': 'G-R-O-A-N. Can you imagine Fenech Adami or Gonzi doing this?'}
{'date': '2011-09-28', 'url': 'https://daphnecaruanagalizia.com/2011/09/labours-minister-for-social-policy-and-the-elderly/', 'title': "Labour's Minister for Social Policy and…the Elderly"}
{'date': '2011-09-28', 'url': 'https://daphnecaruanagalizia.com/2011/09/if-he-no-longer-has-any-use-for-that-green-tie-he-can-always-pass-it-on-to-anthony-zammit/', 'title': 'If he no longer has any use for that green tie, he can always pass it on to Anthony Zammit'}
{'date': '2011-09-28', 'url': 'https://daphnecaruanagalizia.com/2011/09/toni-abela-wotefer-dey-cen-do-we-cen-do-batter/', 'title': 'Toni Abela: wotefer dey cen do, we cen do batter'}
https://daphnecaruanagalizia.com/2011/10
{'date': '2011-10-31', 'url': 'https://daphnecaruanagalizia.com/2011/10/suha-arafat/', 'title': 'Suha Arafat'}
{'date': '2011-10-31', 'url': 'https://daphnecaruanagalizia.com/2011/10/cunning-tricks-and-twisted-minds/', 'title': "'Cunning' tricks and twisted minds"}
{'date': '2011-10-31', 'url': 'https://daphnecaruanagalizia.com/2011/10/the-chairman-of-the-malta-council-of-science-technology-comports-himself-beautifully-once-again/', 'title': 'The chairman of the Malta Council of Science & Technology comports himself beautifully once again'}
{'date': '2011-10-31', 'url': 'https://daphnecaruanagalizia.com/2011/10/somethings-very-very-wrong/', 'title': "Something's very, very wrong"}
{'date': '2011-10-31', 'url': 'https://daphnecaruanagalizia.com/2011/10/jeffrey-belongs-with-labour/', 'title': 'Jeffrey belongs with Labour'}
{'date': '2011-10-30', 'url': 'https://daphnecaruanagalizia.com/2011/10/request-for-police-action-against-jeffrey-pullicino-orlando/', 'title': 'Request for police action against Jeffrey Pullicino Orlando'}
{'date': '2011-10-30', 'url': 'https://daphnecaruanagalizia.com/2011/10/a-stellar-comment-or-two-from-maltastars-comments-board/', 'title': "A stellar comment or two from Maltastar's comments-board"}
{'date': '2011-10-30', 'url': 'https://daphnecaruanagalizia.com/2011/10/hold-off-the-whisky-jeffrey/', 'title': 'Hold off the whisky, Jeffrey….'}
{'date': '2011-10-30', 'url': 'https://daphnecaruanagalizia.com/2011/10/the-eurozone-crisis-agreement-labour-hasnt-noticed-it-happened/', 'title': "The eurozone crisis agreement – Labour hasn't noticed it happened"}
{'date': '2011-10-29', 'url': 'https://daphnecaruanagalizia.com/2011/10/i-dont-trust-myself-to-speak/', 'title': "I don't trust myself to speak"}
{'date': '2011-10-28', 'url': 'https://daphnecaruanagalizia.com/2011/10/the-viewer-decides/', 'title': 'The viewer decides'}
https://daphnecaruanagalizia.com/2011/11
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/just-look-what-silvio-parnis-uploaded-on-facebook/', 'title': 'Just look what Silvio Parnis uploaded on Facebook….'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/havvy-fuel-oil-with-miryum-dalli/', 'title': 'Havvy fuel oil with Miryum Dalli'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/the-outer-circle-of-hell/', 'title': 'The outer circle of hell'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/ronald-reagan-has-retired-aaron-farrugia-chief-of-labours-fondazzjoni-idejat-and-self-described-ekonomista/', 'title': '“Ronald Reagan has retired” – Aaron Farrugia, chief of Labour’s Fondazzjoni Idejat and self-described ‘ekonomista’'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/situation-vacant/', 'title': 'Situation Vacant'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/if-the-labour-party-gets-its-cut-all-its-party-financing-problems-will-be-over/', 'title': 'If the Labour Party gets its cut, all its party financing problems will be over'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/and-three-years-later-its-no-shame-malta-today-turns-labour/', 'title': 'And three years later, it’s ‘NO SHAME: MALTA TODAY TURNS LABOUR’'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/i-like-your-pix-they-are-very-nice-you-are-cute/', 'title': 'i like your pix they are very nice, you are cute'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/its-been-a-long-time-coming/', 'title': 'It’s been a long time coming'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/l-orizzont-mourns-for-a-lost-world/', 'title': 'L-Orizzont mourns a lost world'}
{'date': '2011-11-30', 'url': 'https://daphnecaruanagalizia.com/2011/11/jahasra-ikollhom-jemigraw-minn-ghawdex-lejn-malta/', 'title': 'Jahasra! Ikollhom jemigraw minn Ghawdex lejn Malta'}
https://daphnecaruanagalizia.com/2011/12
{'date': '2011-12-30', 'url': 'https://daphnecaruanagalizia.com/2011/12/the-signs-were-there-at-the-start/', 'title': 'The signs were there at the start'}
{'date': '2011-12-30', 'url': 'https://daphnecaruanagalizia.com/2011/12/emmanuel-mallia-wants-our-sartorial-advice/', 'title': 'Emmanuel Mallia wants our sartorial advice'}
{'date': '2011-12-30', 'url': 'https://daphnecaruanagalizia.com/2011/12/franco-the-christmas-grinch/', 'title': 'Franco, the Christmas Grinch'}
{'date': '2011-12-30', 'url': 'https://daphnecaruanagalizia.com/2011/12/clear-your-diary-3/', 'title': 'Clear your diary'}
{'date': '2011-12-29', 'url': 'https://daphnecaruanagalizia.com/2011/12/for-those-who-doubt-that-neutrality-is-essentially-amoral/', 'title': 'For those who doubt that ‘amoral’ neutrality is essentially immoral'}
{'date': '2011-12-28', 'url': 'https://daphnecaruanagalizia.com/2011/12/the-chief-elve-hits-the-biktime/', 'title': 'The chief elVE hits the biktime'}
{'date': '2011-12-28', 'url': 'https://daphnecaruanagalizia.com/2011/12/tick-tock-ouch/', 'title': 'Tick tock…ouch'}
{'date': '2011-12-28', 'url': 'https://daphnecaruanagalizia.com/2011/12/dont-the-banks-have-rules-about-this-sort-of-thing/', 'title': 'Don’t the banks have rules about this sort of thing?'}
{'date': '2011-12-24', 'url': 'https://daphnecaruanagalizia.com/2011/12/will-franco-debono-please-shut-the-hell-up-and-talk-to-a-psychiatrist-instead/', 'title': 'Will Franco Debono please shut the hell up and talk to a psychiatrist instead?'}
{'date': '2011-12-21', 'url': 'https://daphnecaruanagalizia.com/2011/12/15915/', 'title': 'Here’s to progressive liberalism'}
{'date': '2011-12-21', 'url': 'https://daphnecaruanagalizia.com/2011/12/thicko-kurt-blows-his-bosss-cover/', 'title': 'Thicko Kurt blows his boss’s cover'}
https://daphnecaruanagalizia.com/2012/1
{'date': '2012-01-31', 'url': 'https://daphnecaruanagalizia.com/2012/01/dear-dom-film-coming-soon/', 'title': 'Dear Dom – film coming soon'}
{'date': '2012-01-31', 'url': 'https://daphnecaruanagalizia.com/2012/01/the-opposition-to-acta-li-hu-tieghi-tieghi-li-hu-tieghek-tieghi-wkoll-ghax-mhux-sew-li-ghandek-izjed-minni/', 'title': 'The opposition to ACTA: Li hu tiegħi, tiegħi; li hu tiegħek, tiegħi wkoll – għax mhux sew li għandek iżjed minni.'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/ah-now-we-know-what-konsulent-tal-housing-means/', 'title': 'Ah! Now we know what ‘konsulent tal-housing’ means.'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/joseph-sarkozy-too-bad-he-aint-got-the-broad/', 'title': 'Joseph Sarkozy – too bad he ain’t got the broad'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/acta/', 'title': 'ACTA'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/typical-old-labour-konsultent-tal-housing-they-just-dont-get-it-do-they/', 'title': 'TYPICAL OLD LABOUR: ‘KONSULTENT TAL-HOUSING’. They just don’t get it, do they.'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/the-right-word-is-uncertainty-not-instability-and-labour-is-causing-it/', 'title': 'The right word is uncertainty, not instability. And it’s because people are afraid of Labour being elected.'}
{'date': '2012-01-30', 'url': 'https://daphnecaruanagalizia.com/2012/01/when-you-have-a-slow-puncture-you-change-the-wheel-and-not-the-car/', 'title': 'When you have a slow puncture, you change the wheel and not the car'}
{'date': '2012-01-29', 'url': 'https://daphnecaruanagalizia.com/2012/01/theyre-labour-but-strangely-enough-theyre-not-proud/', 'title': 'They’re Labour, but strangely enough, they’re not proud'}
{'date': '2012-01-29', 'url': 'https://daphnecaruanagalizia.com/2012/01/im-starting-a-petition-of-my-own/', 'title': 'I’m starting a petition of my own'}
{'date': '2012-01-29', 'url': 'https://daphnecaruanagalizia.com/2012/01/now-is-john-dallis-chance-and-franco-debonos/', 'title': 'Now is John Dalli’s chance. And Franco Debono’s.'}
https://daphnecaruanagalizia.com/2012/2
{'date': '2012-02-29', 'url': 'https://daphnecaruanagalizia.com/2012/02/whats-the-state-of-your-yard/', 'title': 'What’s the state of your yard?'}
{'date': '2012-02-29', 'url': 'https://daphnecaruanagalizia.com/2012/02/happy-gnashing/', 'title': 'Happy gnashing'}
{'date': '2012-02-29', 'url': 'https://daphnecaruanagalizia.com/2012/02/blessing-counting-time/', 'title': 'Blessing-counting time'}
{'date': '2012-02-29', 'url': 'https://daphnecaruanagalizia.com/2012/02/troll-comments-on-the-internet-just-like-graffiti/', 'title': 'Troll comments on the internet: just like graffiti'}
{'date': '2012-02-29', 'url': 'https://daphnecaruanagalizia.com/2012/02/at-last-some-unintended-political-satire-for-carnival/', 'title': 'At last, some (unintended) political satire for carnival'}
{'date': '2012-02-28', 'url': 'https://daphnecaruanagalizia.com/2012/02/the-barbarians-are-at-the-gate-so-our-schedule-might-change-without-warning/', 'title': 'The barbarians are at the gate, so our schedule might change without warning'}
{'date': '2012-02-28', 'url': 'https://daphnecaruanagalizia.com/2012/02/melita-incorporated/', 'title': 'Melita Incorporated'}
{'date': '2012-02-28', 'url': 'https://daphnecaruanagalizia.com/2012/02/text-ese/', 'title': 'Text-ese'}
{'date': '2012-02-28', 'url': 'https://daphnecaruanagalizia.com/2012/02/julia-gillard-has-her-own-sad-sack/', 'title': 'Julia Gillard has her own sad sack'}
{'date': '2012-02-28', 'url': 'https://daphnecaruanagalizia.com/2012/02/the-real-dictator/', 'title': 'The (Real) Dictator'}
{'date': '2012-02-26', 'url': 'https://daphnecaruanagalizia.com/2012/02/astrid-and-her-toy-soldiers-have-a-problem-oh-dearie-dear/', 'title': 'Astrid and her Toy Soldiers have a problem – oh dearie dear'}
https://daphnecaruanagalizia.com/2012/3
{'date': '2012-03-30', 'url': 'https://daphnecaruanagalizia.com/2012/03/star-comment-4/', 'title': 'Star comment'}
{'date': '2012-03-30', 'url': 'https://daphnecaruanagalizia.com/2012/03/well-ha-ha-ha-to-that-madam/', 'title': 'Well, ha ha ha to that, madam'}
{'date': '2012-03-30', 'url': 'https://daphnecaruanagalizia.com/2012/03/crucial-songbird-intelligence-for-francos-report/', 'title': 'Crucial songbird intelligence for Franco’s report'}
{'date': '2012-03-30', 'url': 'https://daphnecaruanagalizia.com/2012/03/comment-of-the-day-15/', 'title': 'Comment of the day'}
{'date': '2012-03-30', 'url': 'https://daphnecaruanagalizia.com/2012/03/caritas-has-forgotten-that-children-are-true-luxuries/', 'title': 'Caritas has forgotten that children are true luxuries'}
{'date': '2012-03-28', 'url': 'https://daphnecaruanagalizia.com/2012/03/fkollox-jifhem-gotbles-issa-se-jkollna-colonies-of-nightingales-singing-in-hal-ghaxaq-square/', 'title': 'F’kollox jifhem, gotbles: issa se jkollna colonies of nightingales singing in Hal Ghaxaq square'}
{'date': '2012-03-28', 'url': 'https://daphnecaruanagalizia.com/2012/03/cock-fights-can-be-most-intellectual-you-know/', 'title': 'Cock-fights can be most intellectual, you know'}
{'date': '2012-03-28', 'url': 'https://daphnecaruanagalizia.com/2012/03/a-class-act/', 'title': 'A class act'}
{'date': '2012-03-28', 'url': 'https://daphnecaruanagalizia.com/2012/03/star-commentkumment-stilla/', 'title': 'Star comment/Kumment stilla/Stjar koment'}
{'date': '2012-03-27', 'url': 'https://daphnecaruanagalizia.com/2012/03/well-the-times-has-certainly-got-itself-a-new-sort-of-reader/', 'title': 'Well, The Times has certainly got itself a new sort of reader'}
{'date': '2012-03-26', 'url': 'https://daphnecaruanagalizia.com/2012/03/problems-with-idiomatic-english-sometimes-have-hysterically-funny-consequences/', 'title': 'Problems with idiomatic English sometimes have hysterically funny consequences'}
https://daphnecaruanagalizia.com/2012/4
{'date': '2012-04-30', 'url': 'https://daphnecaruanagalizia.com/2012/04/the-bits-he-doesnt-tell-you-on-facebook/', 'title': 'The bits he doesn’t tell you on Facebook'}
{'date': '2012-04-30', 'url': 'https://daphnecaruanagalizia.com/2012/04/mugliett-finds-himself-another-tunnel/', 'title': 'Mugliett finds himself another tunnel'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/exactly-what-does-botox-jeff-do-for-the-malta-council-of-science-and-technology/', 'title': 'Exactly what does Botox Jeff do for the Malta Council of Science and Technology?'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/its-august-wedding-bells-for-botox-jeff-and-carmen/', 'title': 'It’s August wedding bells for Botox Jeff and Carmen'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/i-cant-wait-to-see-the-end-of-botox-jeff/', 'title': 'I can’t wait to see the end of Botox Jeff'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/the-press-should-ask-jeffrey-why-he-hasnt-divorced-yet-or-married-his-girlfriend/', 'title': 'The press should ask Jeffrey why he hasn’t divorced yet – or married his girlfriend'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/what-else-is-he-going-to-buy-with-other-peoples-money-when-hes-prime-minister/', 'title': 'What else is he going to buy with other people’s money when he’s prime minister?'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/now-he-tells-us-that-his-girlfriend-didnt-vote-for-him/', 'title': 'Now he tells us that his girlfriend didn’t vote for him'}
{'date': '2012-04-29', 'url': 'https://daphnecaruanagalizia.com/2012/04/lino-spiteri-and-his-self-soothing-about-the-national-bank-heist-in-which-he-participated/', 'title': 'Lino Spiteri and his self-soothing about the National Bank heist in which he participated'}
{'date': '2012-04-28', 'url': 'https://daphnecaruanagalizia.com/2012/04/apparently-labour-is-the-perves-party/', 'title': 'Apparently, Labour is the perves party'}
{'date': '2012-04-28', 'url': 'https://daphnecaruanagalizia.com/2012/04/unbelievable-what-are-these-people-like/', 'title': 'UNBELIEVABLE. What are these people LIKE?'}
https://daphnecaruanagalizia.com/2012/5
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/comment-of-the-evening-2/', 'title': 'Comment of the evening'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/a-prescient-piece-of-writing/', 'title': 'A prescient piece of writing'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/like-the-labour-party-heres-another-one-whos-made-a-mess-because-he-doesnt-understand-english/', 'title': 'Like the Labour Party, here’s another one who’s made a mess because he doesn’t understand English'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/read-this-please-everyone-franco-you-definitely-belong-with-labour/', 'title': 'Read this, please, everyone: Franco, you definitely belong with Labour'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/an-email-from-a-journalist-friend/', 'title': 'An email from a journalist friend'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/top-comment-so-far/', 'title': 'Top comment so far'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/labour-not-quite-sure-what-theyve-done-here/', 'title': 'Labour: not quite sure what they’ve done or why they’ve done it'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/look-at-the-people-who-hector-us-about-credibility-and-integrity/', 'title': 'Look at the people who hector us about credibility and integrity'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/guest-post-this-means-i-didnt-write-it-though-i-certainly-agree-with-it/', 'title': 'Guest post (this means I didn’t write it, though I certainly agree with it)'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/its-just-10am-but-heres-the-comment-of-the-day-so-far/', 'title': 'It’s just 10am, but here’s the comment of the day (so far)'}
{'date': '2012-05-31', 'url': 'https://daphnecaruanagalizia.com/2012/05/some-questions/', 'title': 'Some questions'}
https://daphnecaruanagalizia.com/2012/6
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/lawrence-pullicino-was-charged-with-the-murder-not-manslaughter-of-nardu-debono/', 'title': 'Lawrence Pullicino was charged with the MURDER, not manslaughter, of Nardu Debono'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/why-manslaughter-and-not-murder/', 'title': 'Why manslaughter and not murder?'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/comment-of-the-evening-4/', 'title': 'Comment of the evening'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/while-labour-talks-rot-about-gay-pride-the-nationalist-party-understands-that-death-by-racism-is-the-real-issue-here/', 'title': 'While Labour talks rot about Gay Pride, the Nationalist Party understands that death by racism is the real issue here'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/guest-post-3/', 'title': 'Guest post'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/three-planked-motion/', 'title': 'Three-planked motion'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/most-screamingly-funny-comment-of-the-evening/', 'title': 'Most screamingly funny comment of the evening'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/will-somebody-please-give-marlene-mizzi-a-good-seeing-to/', 'title': 'Will somebody please give Marlene Mizzi a good seeing-to?'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/leo-patronises-gays/', 'title': 'Leo patronises gays'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/the-cock-crowed-and-was-met-with-scorn/', 'title': 'The cock crowed, and was met with scorn'}
{'date': '2012-06-30', 'url': 'https://daphnecaruanagalizia.com/2012/06/what-a-bloody-scandal/', 'title': 'What a bloody scandal'}
https://daphnecaruanagalizia.com/2012/7
{'date': '2012-07-31', 'url': 'https://daphnecaruanagalizia.com/2012/07/ara-dawn-se-jsiru-mittilkless-ukoll-bjoseph-fil-gvern/', 'title': 'Ara, dawn se jsiru mittilkless ukoll b’Joseph fil-gvern'}
{'date': '2012-07-31', 'url': 'https://daphnecaruanagalizia.com/2012/07/oh-for-heavens-sake-kif-ma-jisthux/', 'title': 'Oh for heaven’s sake, kif ma jisthux'}
{'date': '2012-07-31', 'url': 'https://daphnecaruanagalizia.com/2012/07/michelle-muscat-is-going-to-want-one-of-these/', 'title': 'Mrs Prattikament Prim Ministru is going to want one of these'}
{'date': '2012-07-31', 'url': 'https://daphnecaruanagalizia.com/2012/07/racism-at-its-worst-this-is-what-liberal-joe-should-talk-about-instead-of-leaving-it-only-to-the-pm/', 'title': 'RACISM AT ITS WORST – THIS IS WHAT LIBERAL JOE SHOULD TALK ABOUT, INSTEAD OF LEAVING IT ONLY TO THE PM'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/deeply-offensive-but-100-true-comment-of-the-day/', 'title': 'Deeply offensive (but 100% true) comment of the day'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/ahem-2/', 'title': 'Ahem'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/hang-out-ma-joseph-muscat/', 'title': 'Hang-out ma’ Joseph Muscat'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/a-boat-party-to-prove-that-labour-is-a-magnet-for-the-young-and-super-hip/', 'title': 'A boat party to prove that Labour is a magnet for the young and super-hip'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/google-heng-out-ma-joseph-muscat/', 'title': 'Google Heng-Out Ma’ Joseph Muscat'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/caption-competition-2/', 'title': 'Caption competition'}
{'date': '2012-07-30', 'url': 'https://daphnecaruanagalizia.com/2012/07/maaaaaaa/', 'title': 'Maaaaaaa……'}
https://daphnecaruanagalizia.com/2012/8
{'date': '2012-08-29', 'url': 'https://daphnecaruanagalizia.com/2012/08/it-has-to-be-laburisti-to-use-facebook-to-try-to-silence-free-speech-and-not-see-the-spectacular-irony-in-doing-so/', 'title': 'It has to be Laburisti to use Facebook to try to silence free speech – and not see the spectacular irony in doing so'}
{'date': '2012-08-29', 'url': 'https://daphnecaruanagalizia.com/2012/08/and-to-think-that-some-of-you-didnt-believe-me-when-i-said-that-hes-two-sandwiches-short-of-a-picnic/', 'title': 'And to think that some of you didn’t believe me when I said that he’s two sandwiches short of a picnic'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/yes-well-joe-wed-kind-of-noticed-that/', 'title': 'Yes, well, Joe – we’d kind of noticed that'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/why-was-fusellu-kept-alive-for-a-considerable-time-after-he-had-been-shot-dead/', 'title': 'Why was Fusellu kept “alive” for a considerable time after he had been shot dead?'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/the-sound-of-the-past-in-the-present/', 'title': 'The sound of the past – in the present'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/this-fat-fuck-thinks-he-deserves-a-medal-and-im-using-his-choice-of-terminology-here/', 'title': 'The Fat Controller thinks he deserves a medal'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/votes-for-women-as-if-mintoff-had-anything-to-do-with-it/', 'title': 'Votes for women – as if Mintoff had anything to do with it'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/so-did-the-hero-of-the-urban-underclass-die-a-pauper/', 'title': 'So did the hero of the urban underclass die a pauper?'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/de-la-rue-employee-james-vella-ha-jorbotni-mal-bumber-u-l-lajks-ghandu-fox-ukoll/', 'title': 'DE LA RUE EMPLOYEE JAMES VELLA HA JORBOTNI MAL-BUMBER. U L-LAJKS, GHANDU FOX UKOLL.'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/il-vera-ghamel-gid-mintoff-istja-araw-ftit-aaaaaa-mintoffjani/', 'title': 'Il-vera ghamel gid, Mintoff, istja – araw ftit, aaaaaa Mintoffjani'}
{'date': '2012-08-28', 'url': 'https://daphnecaruanagalizia.com/2012/08/golly-now-they-want-to-hang-me-too/', 'title': 'Golly, now they want to hang me, too'}
https://daphnecaruanagalizia.com/2012/9
{'date': '2012-09-30', 'url': 'https://daphnecaruanagalizia.com/2012/09/from-a-12-point-electoral-manifesto-to-a-one-sentence-press-release/', 'title': 'From a 12-point ‘electoral manifesto’ to a one-sentence press release'}
{'date': '2012-09-30', 'url': 'https://daphnecaruanagalizia.com/2012/09/franco-debono-mhux-semplici-laburist-imma-mintoffjan-ahdar-mimli-lanzit/', 'title': 'Franco Debono: mhux semplici Laburist imma Mintoffjan ahdar mimli lanzit'}
{'date': '2012-09-29', 'url': 'https://daphnecaruanagalizia.com/2012/09/muscat-is-running-out-of-great-european-socialist-leaders/', 'title': 'Muscat is running out of great European socialist leaders'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/muscat-and-is-suggett-naqra-torny-il-minimum-wage/', 'title': 'Is-suggett naqra ‘torny’, il-minimum wage'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/she-was-well-known-in-mgarr-as-the-victim-of-constant-regular-violence/', 'title': 'She was well known in Mgarr as the victim of constant, regular violence'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/more-mintoffian-economics-tal-biza/', 'title': 'More Mintoffian economics: tal-biza'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/labour-has-a-cunning-plan-for-it/', 'title': 'Labour has a cunning plan for IT'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/one-foot-in-the-grave-and-hes-still-gunning-for-one-last-burst-of-power-before-hes-gone/', 'title': 'One foot in the grave and he’s still gunning for one last burst of power before he’s gone'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/arab-spring-fat-joe-tries-to-ignite-the-maltese-autumn/', 'title': 'Arab Spring? Fat Joe tries to ignite the Maltese Autumn.'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/gay-men-are-rising-rapidly-through-the-ranks-in-the-labour-party/', 'title': 'Gay men are rising rapidly through the ranks in the Labour Party'}
{'date': '2012-09-28', 'url': 'https://daphnecaruanagalizia.com/2012/09/just-look-at-the-sort-of-thinking-sensible-people-who-dont-vote-labour-are-up-against/', 'title': 'Just look at the sort of thinking sensible people (who don’t vote Labour) are up against'}
https://daphnecaruanagalizia.com/2012/10
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/those-who-voted-joseph-cuschieri-into-the-european-parliament-ahead-of-marlene-mizzi-were-right/', 'title': 'Those who voted Joseph Cuschieri into the European Parliament ahead of Marlene Mizzi were right'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/ah-but-karmenu-il-guy-can-do-batter/', 'title': 'Ah, but Karmenu Il-Guy can do batter'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/if-you-want-to-turn-the-deputy-leadership-contest-into-an-exercise-in-cynicism-or-comedy-include-franco-debono/', 'title': 'If you want to turn the deputy leadership contest into an exercise in cynicism or comedy, include Franco Debono'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/what-is-the-lgas-policy-on-its-employees-business-interests/', 'title': 'What is the LGA’s policy on its employees’ business interests?'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/imagine-if-i-were-with-mrs-austin-gatt-what-would-he-have-done-come-past-for-the-sixth-time-in-a-thong-no-doubt/', 'title': 'Imagine if I were with Mrs Austin Gatt. What would he have done? Come past for the sixth time in a thong, no doubt.'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/thats-the-trouble-when-youre-swedish-you-dont-know-whos-who-in-malta/', 'title': 'That’s the trouble when you’re Swedish: you don’t know who’s who in Malta'}
{'date': '2012-10-31', 'url': 'https://daphnecaruanagalizia.com/2012/10/mela-tajjeb-ghandna-franco-l-baggio-u-issa-dalli-l-pele/', 'title': 'Mela tajjeb. Ghandna Franco l-Baggio u issa Dalli l-Pele.'}
{'date': '2012-10-29', 'url': 'https://daphnecaruanagalizia.com/2012/10/hello-joseph-is-appalled-and-hes-still-rooting-for-johnnys-sargas/', 'title': 'Hello! Joseph is appalled. And he’s still rooting for Johnny’s Sargas.'}
{'date': '2012-10-29', 'url': 'https://daphnecaruanagalizia.com/2012/10/top-criminal-lawyer-currently-boasting-about-his-human-rights-record-on-his-blog-leaves-vulnerable-immigrant-client-in-the-lurch/', 'title': 'Top criminal lawyer, currently boasting about his human rights record on his blog, leaves vulnerable immigrant client in the lurch'}
{'date': '2012-10-29', 'url': 'https://daphnecaruanagalizia.com/2012/10/well-you-need-a-smile-on-a-monday-morning/', 'title': 'Well, you need a smile on a Monday morning'}
{'date': '2012-10-29', 'url': 'https://daphnecaruanagalizia.com/2012/10/though-franco-though/', 'title': 'Though, Franco, THOUGH'}
https://daphnecaruanagalizia.com/2012/11
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/pathetic-you-have-to-be-nuts-to-want-to-put-these-three-in-charge-of-the-economy/', 'title': 'PATHETIC. You have to be nuts to want to put these three in charge of the economy.'}
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/a-simple-exercise-to-while-away-the-time-while-waiting-for-the-result/', 'title': 'A simple exercise to while away the time while waiting for the result'}
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/what-else-were-you-expecting-from-a-mintoffian-fossil-backdated-to-1972-maybe-he-has-dementia-already-he-certainly-doesnt-give-a-damn-about-the-electorate/', 'title': 'What else were you expecting from a Mintoffian fossil backdated to 1972? Maybe he has dementia, already. He certainly doesn’t give a damn about the electorate.'}
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/nationalist-party-deputy-leadership-election/', 'title': 'Nationalist Party deputy leadership election'}
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/min-jaf-kemm-u-rileks-issa-l-guy/', 'title': 'MIN JAF KEMM U RILEKS ISSA L-GUY'}
{'date': '2012-11-30', 'url': 'https://daphnecaruanagalizia.com/2012/11/all-that-rubbish-about-mintoff-be-damned-life-under-labour-was-so-bad-that-rai-covered-the-1987-general-election/', 'title': 'All that rubbish about Mintoff be damned. Life under Labour was so bad that RAI covered the 1987 general election.'}
{'date': '2012-11-29', 'url': 'https://daphnecaruanagalizia.com/2012/11/comment-of-the-night-6/', 'title': 'Comment of the night'}
{'date': '2012-11-29', 'url': 'https://daphnecaruanagalizia.com/2012/11/ill-have-him-stir-fried-in-peanut-oil-as-dog-food/', 'title': 'I’ll have him stir-fried in peanut oil (as dog food)'}
{'date': '2012-11-29', 'url': 'https://daphnecaruanagalizia.com/2012/11/labour-delivers-eh-so-whats-it-to-be-pizza-or-chinese/', 'title': 'Labour delivers, eh? So what’s it to be – pizza or Chinese?'}
{'date': '2012-11-29', 'url': 'https://daphnecaruanagalizia.com/2012/11/lets-vote-in-muscat-to-make-us-truly-european/', 'title': 'Let’s vote in Muscat to make us truly European'}
{'date': '2012-11-29', 'url': 'https://daphnecaruanagalizia.com/2012/11/mamma-mia-unbelievable/', 'title': 'Mamma mia, unbelievable'}
https://daphnecaruanagalizia.com/2012/12
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/oh-my-god-please-somebody-cart-this-imbecile-off-to-pasture/', 'title': 'Oh. My. God. Please, somebody cart this imbecile off to pasture.'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/so-are-we-coming-or-going/', 'title': 'So…are we coming or going?'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/labours-in-a-bit-of-a-fix-on-this-one/', 'title': 'Labour’s in a bit of a fix on this one'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/labour-the-cabbage-and-kohlrabi-collection/', 'title': 'Labour: the Cabbage and Kohlrabi Collection'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/excuse-the-fb-speak-omg-wot-a-cabigg/', 'title': 'Excuse the fb speak: omg wot a cabigg'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/min-jaf-kemm-kien-najs-il-party-ta-anglu/', 'title': 'Min jaf kemm kien najs il-party ta’ Anglu'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/how-old-is-this-man-again-and-how-desperate-for-talent-does-muscat-have-to-be-to-make-him-a-minister-or-ps/', 'title': 'How old is this man, again? And how desperate for talent does Muscat have to be to make him a minister or PS?'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/why-labour-leaders-have-it-so-easy-with-their-followers-and-for-pn-leaders-its-always-a-ruddy-struggle/', 'title': 'Why Labour leaders have it so easy with their followers (and for PN leaders it’s always a ruddy struggle)'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/and-he-isnt-even-a-cabinet-minister-again-yet/', 'title': 'And he isn’t even a cabinet minister (again) yet'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/so-right/', 'title': 'So right'}
{'date': '2012-12-19', 'url': 'https://daphnecaruanagalizia.com/2012/12/labour-reveals-its-plans-for-water-yes-anglu-water-and-electricity-bills/', 'title': 'Labour reveals its plans for water (yes, Anglu, water) and electricity bills'}
https://daphnecaruanagalizia.com/2013/1
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/what-did-the-labour-party-did-to-some-of-its-children-which-is-why-theyre-such-bloody-awful-adults-now/', 'title': 'What the Labour Party did to some of its children (which is why they’re such bloody awful adults now)'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/poor-marlene-mizzi-feels-as-though-shes-living-in-zimbabwe/', 'title': 'Poor Marlene Mizzi feels as though she’s living in Zimbabwe'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/a-close-up-of-the-magic-teleprompter/', 'title': 'A close-up of the magic teleprompter'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/ah-so-thats-another-reason-why-the-malta-developers-association-is-so-very-in-with-labour/', 'title': 'Ah, so that’s another reason why the Malta Developers Association is so very in with Labour'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/heres-an-important-corruption-question-which-muscat-must-answer/', 'title': 'Here’s an important corruption question which Muscat must answer'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/impressive-prime-minister-weve-got-here/', 'title': 'Impressive prime minister we’ve got here'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/manuel-mallia-the-laburist-politician-speaks-against-corruption-while-manuel-mallia-the-criminal-lawyer-defends-it/', 'title': 'Manuel Mallia the Laburist politician speaks against corruption, while Manuel Mallia the criminal lawyer defends it'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/the-price-of-democracy/', 'title': 'The price of democracy'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/now-ive-been-round-robined-by-il-guys-friend-edward-scicluna/', 'title': 'Now I’ve been round-robined by Il-Guy’s friend, Edward Scicluna'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/jason-micallef-cuts-that-edge/', 'title': 'Jason Micallef cuts that edge'}
{'date': '2013-01-31', 'url': 'https://daphnecaruanagalizia.com/2013/01/why-luciano-hi-jien-is-sindku-tal-hamrun-busuttil-became-a-labour-politician/', 'title': 'Why Luciano (“Hi, jien is-Sindku tal-Hamrun”) Busuttil became a Labour politician'}
https://daphnecaruanagalizia.com/2013/2
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/lawrence-gonzi-on-bondi-now-on-tvm2/', 'title': 'Lawrence Gonzi on Bondi+ now, on TVM2'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/one-to-watch-lghaziza-zija-tessie-laburista-ta-veru/', 'title': 'ONE TO WATCH: “lghaziza zija tessie laburista ta’ veru”'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/jahasra-ma-marrux-jippuzawlhom-ta-tabib-drake-jew-cunningham/', 'title': 'Jahasra, ma marrux jippuzawlhom ta’ tabib, Drake jew Cunningham?'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/campaign-picture-of-the-week-the-new-minister-for-energy/', 'title': 'Campaign picture of the week: the new Minister for Energy'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/ah-good-im-tired-of-being-asked-about-this/', 'title': 'Ah, good. I’m tired of being asked about this.'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/a-soon-to-be-minister-of-state-and-a-director-of-the-national-theatre-conduct-an-earnest-discussion-on-facebook/', 'title': 'A soon-to-be minister of state and a director of the national theatre conduct an earnest discussion on Facebook'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/what-did-i-say-about-being-outclassed-by-my-readers/', 'title': 'What did I say about being outclassed by my readers…'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/im-being-outclassed-by-my-readers/', 'title': 'Damn. I’m being outclassed by my readers.'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/star-comment-8/', 'title': 'STAR COMMENT'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/heres-why-hes-asking-people-to-vote-early/', 'title': 'Here’s why he’s asking people to vote early'}
{'date': '2013-02-28', 'url': 'https://daphnecaruanagalizia.com/2013/02/mamma-mia-kasco-must-really-be-turning-the-screws/', 'title': 'Mamma mia, Kasco must really be turning the screws'}
https://daphnecaruanagalizia.com/2013/3
{'date': '2013-03-31', 'url': 'https://daphnecaruanagalizia.com/2013/03/this-is-a-resilient-jurisdiction-where-investment-policies-adopted-by-our-institutions-are-sound-and-conservative-joseph-muscat-now/', 'title': '“This is a resilient jurisdiction where investment policies adopted by our institutions are sound and conservative” – Joseph Muscat (now)'}
{'date': '2013-03-31', 'url': 'https://daphnecaruanagalizia.com/2013/03/next-up-frank-portelli/', 'title': 'Next up: Frank Portelli'}
{'date': '2013-03-31', 'url': 'https://daphnecaruanagalizia.com/2013/03/look-to-egypt-to-see-what-happens-when-you-put-a-limit-on-political-satire/', 'title': 'Look to Egypt to see what happens when you put a limit on political satire'}
{'date': '2013-03-31', 'url': 'https://daphnecaruanagalizia.com/2013/03/constitutional-mob-rule-in-hungary/', 'title': 'Constitutional Mob Rule in Hungary'}
{'date': '2013-03-31', 'url': 'https://daphnecaruanagalizia.com/2013/03/happy-easter/', 'title': 'Happy Easter'}
{'date': '2013-03-30', 'url': 'https://daphnecaruanagalizia.com/2013/03/oh-dear-whats-that-disease-that-chickens-get-where-they-moult-in-patches/', 'title': 'Oh dear! What’s that disease that chickens get, where they moult in patches?'}
{'date': '2013-03-29', 'url': 'https://daphnecaruanagalizia.com/2013/03/comment-of-the-day-the-naked-emperor-scourge-which-afflicts-this-nation/', 'title': 'Comment of the day: “the Naked Emperor scourge which afflicts this nation”'}
{'date': '2013-03-29', 'url': 'https://daphnecaruanagalizia.com/2013/03/easter-with-my-chief-of-staff/', 'title': '“Easter with my Chief of Staff”'}
{'date': '2013-03-29', 'url': 'https://daphnecaruanagalizia.com/2013/03/it-is-entirely-right-proper-and-fitting-that-this-country-should-have-its-constitution-reconstituted-by-this-man/', 'title': 'It is entirely right, proper and fitting that this country should have its Constitution reconstituted by this man'}
{'date': '2013-03-29', 'url': 'https://daphnecaruanagalizia.com/2013/03/maaaaa-lets-all-be-positive-but/', 'title': 'Maaaaa, let’s all be positive, but.'}
{'date': '2013-03-29', 'url': 'https://daphnecaruanagalizia.com/2013/03/join-the-21st-century-franco/', 'title': 'Join the 21st century, Franco'}
https://daphnecaruanagalizia.com/2013/4
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/watch-out-she-might-pounce/', 'title': 'Watch out, she might pounce'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/will-jose-herrera-please-clear-up-the-matter-of-doreen-tal-fjurs-apparent-new-job-at-the-manoel-theatre/', 'title': 'Will Jose Herrera please clear up the matter of Doreen Tal-Fjur’s apparent new job at the Manoel Theatre?'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/oh-for-crying-out-loud-milk-the-power-cow-a-little-more-will-you/', 'title': 'Oh for crying out loud – milk the power-cow a little more, will you?'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/lydia-abela-nee-zerafa-consolidates-her-territory/', 'title': 'Lydia Abela (nee Zerafa) consolidates her territory'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/can-these-jacks-in-the-boxes-settle-down/', 'title': 'Can these jacks-in-the-boxes settle down?'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/repeat-after-joseph-malta-taghna-lkoll/', 'title': 'Repeat after Joseph: Malta Taghna Lkoll'}
{'date': '2013-04-30', 'url': 'https://daphnecaruanagalizia.com/2013/04/miss-boffa-gets-her-iced-bun/', 'title': 'Miss Boffa gets her iced bun'}
{'date': '2013-04-29', 'url': 'https://daphnecaruanagalizia.com/2013/04/konrad-mizzi-still-thinks-tonio-fenech-is-the-man-responsible-for-energy/', 'title': 'Konrad Mizzi still thinks Tonio Fenech is the man responsible for energy'}
{'date': '2013-04-29', 'url': 'https://daphnecaruanagalizia.com/2013/04/having-their-cake-and-eating-it/', 'title': 'Having their cake and eating it'}
{'date': '2013-04-29', 'url': 'https://daphnecaruanagalizia.com/2013/04/more-more-and-more-malta-taghna-lkoll-appointments/', 'title': 'More, more and more Malta Taghna Lkoll appointments'}
{'date': '2013-04-29', 'url': 'https://daphnecaruanagalizia.com/2013/04/hi-renzo-im-joseph/', 'title': '‘Hi Renzo, I’m Joseph’'}
https://daphnecaruanagalizia.com/2013/5
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/neils-aunt-writes-in/', 'title': 'Neil Kerr’s Auntie Maria writes in'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/billboard-audrey-in-a-seriously-bad-melodrama-will-billboard-frederick-snap-it-up-for-tvm/', 'title': 'Billboard Audrey in a seriously bad melodrama. Will Billboard Frederick snap it up for TVM?'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/does-mrs-michelle-muscat-have-her-own-official-car-and-chauffeur/', 'title': 'Does ‘Mrs Michelle Muscat’ have her own official car and chauffeur?'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/do-you-actually-know-what-youre-doing-and-saying-mr-prime-minister/', 'title': 'Do you actually know what you’re doing and saying, Mr Prime Minister?'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/please-send-in-your-cost-cutting-suggestions-to-help-joseph-and-edward-reduce-the-deficit-here-is-the-first-one/', 'title': 'Please send in your cost-cutting suggestions to help Joseph and Edward reduce the deficit. Here is the first one.'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/top-comment-8/', 'title': 'Top comment'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/i-told-you-our-only-coping-mechanism-would-be-black-humour/', 'title': 'I told you our only coping mechanism would be black humour'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/id-like-you-all-to-take-a-close-look-at-this-photograph-please-because-i-am-perplexed/', 'title': 'I’d like you all to take a close look at this photograph, please, because I am perplexed'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/jahasra-2/', 'title': 'JAHASRA…'}
{'date': '2013-05-31', 'url': 'https://daphnecaruanagalizia.com/2013/05/trying-to-prove-theyre-doing-something-or-what/', 'title': 'Trying to prove they’re doing something, or what?'}
{'date': '2013-05-30', 'url': 'https://daphnecaruanagalizia.com/2013/05/comment-of-the-day-47/', 'title': 'Comment of the day'}
https://daphnecaruanagalizia.com/2013/6
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/next-time-i-find-the-homicide-squad-at-my-gate-with-an-arrest-warrant-on-election-eve-ill-say-but-i-didnt-order-take-out/', 'title': 'Next time I find the Homicide Squad at my gate with an arrest warrant on election eve, I’ll say “But I didn’t order take-out.”'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/he-can-always-borrow-jeffreys-pussy-for-his-next-desk-shot/', 'title': 'He can always borrow Jeffrey’s pussy for his next desk shot'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/and-heres-another-example-of-whos-in-charge-in-a-specific-place-in-a-democracy/', 'title': 'And here’s another example of who’s in charge in a specific place – in a democracy'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/you-asked-whether-its-against-the-law-to-take-water-from-a-public-fountain-yes-it-is/', 'title': 'You asked whether it’s against the law to take water from a public fountain. Yes, it is.'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/a-video-guide-for-that-very-important-man-silvio-scerri/', 'title': 'A video guide for that very important man, Silvio Scerri'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/this-is-the-kind-of-mentality-silvio-scerri-the-police-minister-and-the-police-commissioner-share/', 'title': 'This is the kind of mentality Silvio Scerri, the Police Minister and the Police Commissioner share'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/do-you-know-who-i-am-lets-all-make-sure-we-know-who-silvio-scerri-is-when-we-next-see-him/', 'title': '“Do you know who I am?” Let’s all make sure we know who Silvio Scerri is when we next see him.'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/compare-and-contrast-2/', 'title': 'Compare and contrast'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/peter-paul-zammit-and-manuel-mallia-branch-out/', 'title': 'Peter Paul Zammit and Manuel Mallia branch out'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/manuel-mallia-jose-herrera-must-be-laughing/', 'title': 'Manuel Mallia: Jose Herrera must be laughing'}
{'date': '2013-06-30', 'url': 'https://daphnecaruanagalizia.com/2013/06/excellent-leading-article-in-the-sunday-times-on-the-subject-of-maltas-most-famous-lidl-customer/', 'title': 'Excellent leading article in The Sunday Times, on the subject of Malta’s most famous Lidl customer'}
https://daphnecaruanagalizia.com/2013/7
{'date': '2013-07-31', 'url': 'https://daphnecaruanagalizia.com/2013/07/spot-the-new-chairman-of-the-malta-statistics-authority/', 'title': 'Spot the new chairman of the Malta Statistics Authority'}
{'date': '2013-07-31', 'url': 'https://daphnecaruanagalizia.com/2013/07/finance-minister-appoints-ex-chairman-of-the-anti-eu-membership-lobby-group-cni-campaign-for-national-independence-to-the-chairmanship-of-the-malta-statistics-authority/', 'title': 'Finance minister appoints ex chairman of the anti-EU lobby group, CNi (Campaign for National Independence) to the chairmanship of the Malta Statistics Authority'}
{'date': '2013-07-31', 'url': 'https://daphnecaruanagalizia.com/2013/07/taste-out-this-sunday/', 'title': 'Taste – Out this Sunday'}
{'date': '2013-07-31', 'url': 'https://daphnecaruanagalizia.com/2013/07/somebody-was-in-a-bit-of-a-hurry-in-the-summer-heat/', 'title': 'Somebody was in a bit of a hurry in the summer heat'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/im-going-to-have-to-revise-my-headline-of-the-week-award/', 'title': 'I’m going to have to revise my Headline of the Week Award'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/the-police-minister-and-the-police-commissioner-theyre-lidl-buddies/', 'title': 'The Police Minister and the Police Commissioner: they’re Lidl buddies'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/two-things-are-required-of-a-columnist-for-a-national-newspaper/', 'title': 'Two things are required of a columnist for a national newspaper'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/the-imam-had-better-beware-labour-posterboy-albert-gauci-cunningham-is-probably-heading-his-way-with-a-bawzer-hara/', 'title': 'The Imam had better beware. Labour posterboy Albert Gauci Cunningham is probably heading his way with a ‘bawzer hara’'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/how-convenient-to-be-magistrate-herreras-boyfriend-hes-in-not-that-she-would-notice/', 'title': 'How convenient, to be Magistrate Herrera’s boyfriend. He’s in! (not that she would notice)'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/the-malta-taghna-lkoll-movement-is-beginning-to-resemble-a-sack-of-ferrets/', 'title': 'The Malta Taghna Lkoll movement is beginning to resemble a sack of ferrets'}
{'date': '2013-07-30', 'url': 'https://daphnecaruanagalizia.com/2013/07/my-impromptu-award-for-headline-of-the-week-must-be-split-between-two-of-todays-headlines/', 'title': 'My impromptu award for Headline of the Week must be split between two of today’s headlines'}
https://daphnecaruanagalizia.com/2013/8
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/what-scum-and-by-this-i-mean-not-just-the-police-commissioner-but-also-malta-today-which-appears-delighted-to-see-justice-undone/', 'title': 'What scum – and by this I mean not just the Police Commissioner but also Malta Today, which appears delighted to see justice undone'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/comment-of-the-day-54/', 'title': 'Comment of the day'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/labour-appointed-police-board-recommends-disciplinary-action-against-police-officer-who-prosecuted-the-culprit-no-disciplinary-action-against-those-who-prosecuted-the-wrong-man/', 'title': 'Labour-appointed Police Board recommends disciplinary action against police officer who prosecuted the culprit. No disciplinary action against those who prosecuted the wrong man.'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/look-at-these-children-instinctively-creeped-out-by-stefan-buontempo/', 'title': 'UPDATED WITH VIDEO: Look at these children, instinctively creeped out by Stefan Buontempo'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/my-wenzu-mintoffs-position-at-malta-enterprise-has-been-magnified-and-consolidated-and-hes-been-further-empowered/', 'title': 'My, Wenzu Mintoff’s position at Malta Enterprise has been magnified and consolidated, and he’s been further empowered'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/i-wonder-what-astrid-vella-is-going-to-say-about-this/', 'title': 'I wonder what Astrid Vella is going to say about this'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/ponija-tal-olanda-pony-horse/', 'title': 'Ponija tal olanda pony horse'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/oh-look-the-labour-government-has-put-im-not-a-laburista-michela-spiteri-franco-debonos-buddy-on-the-vallettafloriana-rehabilitation-committee-and-her-father-on-the-air-malta-board-alo/', 'title': 'Oh, look. The Labour government has put ‘I’m not a Laburista’ Michela Spiteri (Franco Debono’s buddy) on the Valletta/Floriana Rehabilitation Committee (and her father on the Air Malta board), along with Saviour Balzan’s father-in-law Dennis Dowling (a shopkeeper), building supplies purveyor and Laburist Alex Falzon and Kitten of Malta as chairman'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/government-appoints-rogue-developer-and-labour-party-donor-sandro-chetcuti-to-building-regulation-board/', 'title': 'Government appoints rogue developer and Labour Party donor Sandro Chetcuti to Building Regulation Board'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/meet-byron-camilleri-25-company-secretary-to-malta-freeport-corporation-chairman-of-the-refugee-appeals-board-labour-mayor-of-fgura-and-ex-elve-with-forum-zghazagh-laburisti/', 'title': 'Meet Byron Camilleri, 25, graduated as a lawyer nine months ago – company secretary to Malta Freeport Corporation, chairman of the Refugee Appeals Board, Labour mayor of Fgura and ex ‘elve’ with Forum Zghazagh Laburisti'}
{'date': '2013-08-31', 'url': 'https://daphnecaruanagalizia.com/2013/08/chairman-of-pharmacy-council-and-member-of-malta-film-commission-gets-top-billing-in-fgura-talent-show-last-saturday/', 'title': 'Chairman of Pharmacy Council and member of Malta Film Commission gets top billing in Fgura Talent Show last Saturday'}
https://daphnecaruanagalizia.com/2013/9
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/more-questions-have-to-be-asked-about-the-governments-solar-panels-deal-with-china-read-the-bbc-today/', 'title': 'More questions have to be asked about the government’s solar panels deal with China. Read the BBC today.'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/come-on-dont-you-know-who-he-is-2/', 'title': 'Come on, don’t you know who he is?'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/have-enemalta-employees-been-told-this-bit-of-news-buried-in-the-last-line-of-long-newspaper-story/', 'title': 'Have Enemalta employees been told this bit of news buried in the last line of long newspaper story?'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/oh-lord-deliver-us-from-this-plague-of-locusts/', 'title': 'Oh Lord, deliver us from this biblical plague of locusts'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/exactly-what-is-mrs-konrad-mizzis-care-for-children-outfit/', 'title': 'Exactly what is Mrs Konrad Mizzi’s ‘Care for Children’ outfit?'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/the-headline-leaves-out-the-crucial-words-at-a-reception-with-hundreds-of-others/', 'title': 'The headline leaves out the crucial words “at a reception with hundreds of others”'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/look-at-the-stories-on-this-front-page/', 'title': 'Look at the stories on this front page'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/joseph-cuschieri-reminds-the-prime-minister-that-he-is-in-his-debt-like-muscat-gives-a-damn/', 'title': 'Joseph Cuschieri reminds the prime minister that he is in his debt (like Muscat gives a damn)'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/and-what-about-that-mrs-konrad-mizzi-eh/', 'title': 'And what about that Mrs Konrad Mizzi, eh?'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/saviour-balzans-iced-bun/', 'title': 'Saviour Balzan’s iced bun'}
{'date': '2013-09-30', 'url': 'https://daphnecaruanagalizia.com/2013/09/joseph-muscat-tells-america-you-need-to-be-spending-your-money-wisely-and-not-trowink-it-et-de-docks/', 'title': 'Joseph Muscat tells America: “you need to be spending your money wisely and not TROWINK IT ET DE DOCKS”'}
https://daphnecaruanagalizia.com/2013/10
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/and-here-they-are-again-strolling-around-in-qui-si-sana-while-the-pyoc-scheme-goes-to-de-docks/', 'title': 'And here they are again, strolling around in Qui-Si-Sana while the POYC scheme goes “to de docks”'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/10-15am-today-and-the-health-minister-and-his-girlfriend-are-strolling-along-the-sliema-front-in-holiday-wear/', 'title': '10.15am today, and the Health Minister and his girlfriend are strolling along the Sliema front in holiday wear'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/fascinating-that-this-should-be-the-first-response-to-my-invitation-to-send-in-photos-of-government-ministers-and-their-aides/', 'title': 'Fascinating that this should be the first response to my invitation to send in photos of government ministers and their aides'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/please-quit-the-primitive-behaviour/', 'title': 'Please quit the primitive behaviour'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/weve-been-missing-the-obvious/', 'title': 'We’ve been missing the obvious'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/does-anyone-have-a-good-word-to-say-about-the-sale-of-passports-scheme/', 'title': 'Does anyone have a good word to say about the sale-of-passports scheme?'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/arrest-them-all/', 'title': 'Arrest them all'}
{'date': '2013-10-31', 'url': 'https://daphnecaruanagalizia.com/2013/10/you-can-read-the-courts-decision-against-the-police-here/', 'title': 'You can read the court’s decision against the police here'}
{'date': '2013-10-30', 'url': 'https://daphnecaruanagalizia.com/2013/10/a-turnip-speaks/', 'title': 'A turnip speaks'}
{'date': '2013-10-30', 'url': 'https://daphnecaruanagalizia.com/2013/10/top-comment-of-the-evening/', 'title': 'Top comment of the evening'}
{'date': '2013-10-30', 'url': 'https://daphnecaruanagalizia.com/2013/10/another-true-life-experience-from-the-malta-taghna-lkoll-front/', 'title': 'Another true-life experience from the Malta Taghna Lkoll front'}
https://daphnecaruanagalizia.com/2013/11
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/hooker-shoes-at-a-ebusiness-awards-ceremony/', 'title': 'Hooker shoes at an eBusiness awards ceremony'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/the-dramatic-life-of-ramona-frendo-member-of-the-justice-reform-committee-and-attention-seeker-extraordinaire/', 'title': 'The dramatic life of Ramona Frendo, member of the Justice Reform Committee and attention-seeker extraordinaire'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/dallis-man-mark-sammut-is-a-labour-government-appointee-to-the-board-of-transport-malta/', 'title': 'Dalli’s man Mark Sammut is a Labour government appointee to the board of Transport Malta'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/exclusive-rare-footage-of-maltas-high-commissioner-in-london-and-mrs-hamilton/', 'title': 'Exclusive, rare footage of Malta’s High Commissioner in London and Mrs Hamilton'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/an-exclusive-interview-with-maltas-high-commissioner-in-london/', 'title': 'An exclusive interview with Malta’s High Commissioner in London'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/more-photoshop-heaven-and-you-really-must-read-about-how-she-is-giving-her-children-a-normal-life/', 'title': 'More Photoshop heaven – and you really must read about how she is giving her children a normal life'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/flair-magazine-out-tomorrow-with-the-malta-independent-on-sunday/', 'title': 'Flair magazine – out tomorrow with The Malta Independent on Sunday'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/top-comments-from-facebook-though/', 'title': 'Top comments – from Facebook, though'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/the-prime-minister-of-malta-bil-kowt-tan-nye-how-very-unprepossessing/', 'title': 'The prime minister of Malta ‘bil-kowt tan-NYE’ – how very unprepossessing'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/chinese-news-agency-invites-manuel-mallia-to-open-its-malta-bureau-manuel-mallia-accepts/', 'title': 'Chinese news agency invites Manuel Mallia to open its Malta bureau. Manuel Mallia accepts.'}
{'date': '2013-11-30', 'url': 'https://daphnecaruanagalizia.com/2013/11/super-one-contingent-makes-it-to-buckingham-palace-at-last/', 'title': 'Super One contingent makes it to Buckingham Palace at last'}
https://daphnecaruanagalizia.com/2013/12
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/so-exactly-how-does-somebody-whose-job-it-is-to-run-a-shelter-for-the-homeless-end-up-owning-a-large-farm-in-sicily-with-a-business-selling-agricultural-products/', 'title': 'So exactly how does somebody whose job it is to run a shelter for the homeless end up owning a large farm in Sicily, with a business selling agricultural products?'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/happy-new-year-once-more-my-dears-heres-something-appropriate-for-2014-try-singing-it-after-two-bottles-of-champagne/', 'title': 'Happy new year once more, my dears. Here’s something appropriate for 2014 – try singing it after two bottles of champagne tonight.'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/so-now-hes-just-your-ordinary-joe-circus-promoter-is-he/', 'title': 'So now he’s just your ordinary Joe circus promoter, is he?'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/yes-i-am-most-definitely-an-adult/', 'title': 'Yes, I am most definitely an adult'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/happy-new-year-2/', 'title': 'Happy New Year'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/isnt-it-time-we-left-maltese-liri-behind-and-stop-using-this-fictitious-foreign-exchange-rate/', 'title': 'Isn’t it time we left Maltese liri behind and stop using this fictitious ‘foreign exchange’ rate?'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/costantino-baratta-56-a-stonemason-in-lampedusa-is-italian-news-magazine-lespressos-man-of-the-year/', 'title': 'Costantino Baratta, 56, a stonemason in Lampedusa, is Italian news magazine L’Espresso’s Man of the Year'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/headline-in-el-universal-venezuelan-national-newspaper-published-in-caracas-last-sunday-malta-is-selling-passports-to-adjust-budget-deficit/', 'title': 'Headline in El Universal, Venezuelan national newspaper, published in Caracas last Sunday: ‘Malta is selling passports to adjust budget deficit’'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/spains-leading-newspaper-el-pais-28-december-malta-is-selling-passports/', 'title': 'Spain’s leading newspaper, El Pais, last Saturday: ‘Malta is selling passports’'}
{'date': '2013-12-31', 'url': 'https://daphnecaruanagalizia.com/2013/12/twanny-bronka-and-the-three-magi-of-the-progressive-liberal-best-in-europe-labour-government/', 'title': 'Twanny Bronka and the Three Magi of the Progressive, Liberal, Best-in-Europe Labour government'}
{'date': '2013-12-27', 'url': 'https://daphnecaruanagalizia.com/2013/12/on-kxlf-christmas-day-as-reported-by-cnn/', 'title': 'On KXLF, Christmas Day – as reported by CNN'}
https://daphnecaruanagalizia.com/2014/1
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/to-brighten-up-your-friday-night-heres-a-guest-post-by-h-p-baxxter/', 'title': 'To brighten up your Friday night: here’s a guest post by H. P. Baxxter'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/there-speak-the-real-europeans-and-the-true-democratic-spirit/', 'title': 'There speak the real Europeans and the true democratic spirit'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/so-now-we-know-how-labour-plans-to-win-the-next-general-election-by-buying-votes-with-passports/', 'title': 'So now we know how Labour plans to win the next general election: by buying votes with passports'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/ive-been-looking-for-a-way-to-explain-how-joseph-muscat-uses-the-rule-book-to-break-the-rules-and-now-a-reader-has-put-it-perfectly-muscat-uses-the-letter-of-the-law-to-break-its-spirit/', 'title': 'I’ve been looking for a way to explain how Joseph Muscat uses the rule book to break the rules. And now a reader has put it perfectly: Muscat uses the letter of the law to break its spirit.'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/the-conditions-for-sale-of-maltese-citizenship-have-not-been-tightened-as-has-been-reported-but-rather-the-opposite/', 'title': 'The conditions for sale of Maltese citizenship have not been ‘tightened’ as has been reported, but rather the opposite'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/guest-post-on-the-meaning-of-residence/', 'title': 'Guest post on the meaning of residence'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/183-days-in-malta-and-you-are-officially-a-resident-but-only-if-you-plan-to-buy-your-passport/', 'title': '183 days in Malta and you are officially a resident. But only if you plan to buy your passport.'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/comment-up-for-discussion/', 'title': 'Comment up for discussion'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/tonights-top-comment/', 'title': 'Tonight’s top comment'}
{'date': '2014-01-31', 'url': 'https://daphnecaruanagalizia.com/2014/01/the-prime-minister-told-us-at-his-press-conference-yesterday-that-those-who-buy-their-passports-will-get-the-right-to-vote/', 'title': 'The prime minister told us at his press conference yesterday that those who buy their passports will get the right to vote'}
{'date': '2014-01-30', 'url': 'https://daphnecaruanagalizia.com/2014/01/after-the-governments-negotiations-with-the-european-commission-the-situation-for-malta-is-worse-than-it-was-before-not-better/', 'title': 'After the government’s negotiations with the European Commission, the situation for Malta is worse than it was before, not better'}
https://daphnecaruanagalizia.com/2014/2
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/my-friend-the-toppled-despot-now-a-fugitive-in-the-kremlin/', 'title': '“My friend the toppled despot, now a fugitive in the Kremlin”'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/and-anglu-farrugia-described-those-elections-as-democratic-and-transparent/', 'title': 'And Anglu Farrugia described those elections as “democratic and transparent”'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/the-organised-crime-and-corruption-reporting-project-named-ilham-aliyev-president-of-azerbaijan-person-of-the-year/', 'title': 'The Organised Crime and Corruption Reporting Project named Ilham Aliyev, president of Azerbaijan, ‘Person of the Year’'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/seven-meps-are-under-investigation-for-describing-azerbaijans-elections-as-free-and-fair-but-the-speaker-of-maltas-parliament-goes-unreprimanded-because-hes-not-accountable/', 'title': 'Seven MEPs are sanctioned for describing Azerbaijan’s elections as free and fair. But the Speaker of Malta’s parliament goes unreprimanded because he’s not accountable.'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/corruptistan-the-low-down-on-azerbaijans-regime/', 'title': '‘Corruptistan’: the low-down on Azerbaijan’s regime'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/isnt-it-a-good-thing-yanukovych-took-a-rain-check-on-his-state-visit-to-malta-last-november-there-would-have-been-another-deposed-dictator-with-a-gieh-ir-repubblika/', 'title': 'Isn’t it a good thing Yanukovych took a rain-check on his state visit to Malta last November? There would have been another deposed dictator with a Gieh Ir-Repubblika.'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/under-performing-russia-in-terms-of-democratic-accountability-isnt-easy-to-do-but-azerbaijan-managed-to-do-it/', 'title': '“Under-performing Russia in terms of democratic accountability isn’t easy to do, but Azerbaijan managed to do it”'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/whos-on-the-take/', 'title': 'Who’s on the take?'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/bbc-panorama-eurovisions-dirty-secret-azerbaijan/', 'title': 'BBC Panorama: ‘Eurovision’s dirty secret’ (Azerbaijan – the country that owns 20% of Malta’s new power station project)'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/government-by-henley-partners-the-latest-news/', 'title': 'Government by Henley & Partners: the latest news'}
{'date': '2014-02-28', 'url': 'https://daphnecaruanagalizia.com/2014/02/and-our-government-possibly-when-it-was-in-opposition-chose-to-strike-a-deal-with-the-corrupt-and-despotic-regime-of-azerbaijan-for-its-power-station-project/', 'title': 'And our government (possibly when it was in Opposition) chose to strike a deal with the corrupt and despotic regime of Azerbaijan for its power station project'}
https://daphnecaruanagalizia.com/2014/3
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/another-eyewitness-account-of-the-real-31-march-1979/', 'title': 'Another eyewitness account of the REAL 31 March 1979'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/men-of-60-or-thereabouts-who-tweet-and-fb-about-contemporary-music-are-not-cool-or-hip-theyre-sad/', 'title': 'Men of 60 or thereabouts who tweet and FB about contemporary music are not cool or hip. They’re sad.'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/the-prime-minister-conducts-his-bilateral-relations-out-of-the-labour-party-hq/', 'title': 'The Prime Minister conducts his bilateral relations out of the Labour Party HQ'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/miriam-dalli-of-malta-today-has-a-massive-crush-on-kurt-farrugia-the-governments-chief-of-communications/', 'title': 'UPDATED: Miriam Dalli of Malta Today has a massive crush on Kurt Farrugia, the government’s chief of communications'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/jason-micallef-on-the-subject-of-freedom-of-expression-and-knowing-his-place-as-chairman-of-a-state-entity/', 'title': 'Jason Micallef on the subject of freedom of expression and knowing his place as chairman of a state entity'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/mrs-muscat-took-her-primary-school-age-daughter-to-felix-busuttils-highly-sexualised-divas-tonight-and-its-a-school-night-too/', 'title': 'Mrs Muscat took her primary-school-age daughter to Felix Busuttil’s highly sexualised DIVAS tonight. And it’s a school-night, too.'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/how-utterly-crass-labours-official-news-site-is-running-two-identical-photos-of-the-pm-with-the-headline-that-he-will-not-waste-time-on-the-opposition-leader/', 'title': 'How utterly crass: Labour’s official news site is running two identical photos of the PM with the headline that he will not waste time on the Opposition leader'}
{'date': '2014-03-31', 'url': 'https://daphnecaruanagalizia.com/2014/03/and-they-say-the-risk-is-negligible-four-hurt-in-lng-plant-explosion-in-the-us-neighbours-evacuated/', 'title': 'And they say the risk is negligible: Four hurt in LNG plant explosion in the US, people evacuated from two-mile radius'}
{'date': '2014-03-30', 'url': 'https://daphnecaruanagalizia.com/2014/03/all-that-fuss-about-mintoff-when-he-died-and-today-they-show-no-videos-of-mintoff-and-show-us-mandela-gandhi-king-and-havel-instead/', 'title': 'All that fuss about Mintoff when he died, and today they show no videos of Mintoff and show us Mandela, Gandhi, King and Havel instead'}
{'date': '2014-03-30', 'url': 'https://daphnecaruanagalizia.com/2014/03/an-eyewitness-report-of-the-real-31-march-1979-ceremony-as-opposed-to-the-fake-construct-involving-mandela-gandhi-and-martin-luther-king/', 'title': 'An eyewitness report of the real 31 March 1979 ceremony – as opposed to the fake construct involving Mandela, Gandhi and Martin Luther King'}
{'date': '2014-03-30', 'url': 'https://daphnecaruanagalizia.com/2014/03/the-real-31-march-1979-as-reported-by-the-times-of-malta/', 'title': 'The real 31 March 1979 – as reported by The Times of Malta'}
https://daphnecaruanagalizia.com/2014/4
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/all-those-eu-and-malta-flags-and-that-podium-to-announce-two-cents-off-petrol/', 'title': 'All those EU and Malta flags and that podium: to announce two cents off petrol'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/the-government-raised-the-price-of-petrol-a-month-ago/', 'title': 'The government raised the price of petrol a month ago'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/labours-big-solution-to-the-burials-problem-is-borrowed-from-the-mafia-dissolving-bodies-in-chemicals/', 'title': 'Labour’s big solution to the burials problem is borrowed from the Mafia and the Nazis: dissolving bodies in chemicals and flushing them into the sewage or using them as fertiliser'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/top-comment-so-far-on-the-pms-press-conference/', 'title': 'Top comment so far on the PM’s press conference'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/some-of-those-who-found-muscat-terribly-impressive-before-march-13-must-be-feeling-like-right-and-proper-idiots-now-i-said-some/', 'title': 'Some of those who found Muscat terribly impressive before March ’13 must be feeling like right and proper idiots now. I said ‘some’.'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/muscats-in-the-coming-days-we-will-announce-important-news-turns-out-to-be-the-equivalent-of-kmbs-centezmu-rohs-fil-prezz-tat-ton-taz-zejt/', 'title': 'Muscat’s ‘in the coming days we will announce important news’ turns out to be the equivalent of KMB’s ‘centezmu rohs fil-prezz tat-ton taz-zejt’'}
{'date': '2014-04-30', 'url': 'https://daphnecaruanagalizia.com/2014/04/another-headline-the-london-evening-standard-circulation-900000-for-the-print-edition-alone/', 'title': 'Another headline: The London Evening Standard, print edition – circulation 900,000'}
{'date': '2014-04-29', 'url': 'https://daphnecaruanagalizia.com/2014/04/muscat-horizon-expansion-update-azerbaijan-which-will-own-20-of-the-new-power-station-cracks-down-on-human-rights-activists-and-journalists/', 'title': 'Muscat-horizon-expansion update: Azerbaijan, which will own 20% of the new power station, cracks down on human rights activists and journalists'}
{'date': '2014-04-29', 'url': 'https://daphnecaruanagalizia.com/2014/04/bbc1s-breakfast-show-this-morning/', 'title': 'BBC1’s breakfast show this morning'}
{'date': '2014-04-29', 'url': 'https://daphnecaruanagalizia.com/2014/04/chris-packham-tweets-in-response-to-muscats-suggestion-that-he-will-legislate-to-block-the-anti-hunting-referendum-the-world-is-laughing-at-what-you-call-democracy/', 'title': 'Chris Packham tweets in response to Muscat’s suggestion that he will legislate to block the anti-hunting referendum: “The world is laughing at what you call democracy.”'}
{'date': '2014-04-29', 'url': 'https://daphnecaruanagalizia.com/2014/04/it-looks-like-air-malta-is-going-to-be-sold-to-one-of-mr-nairs-friendly-dictatorships-just-like-enemalta/', 'title': 'It looks like Air Malta is going to be sold to one of Mr Nair’s friendly dictatorships, just like Enemalta'}
https://daphnecaruanagalizia.com/2014/5
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/qamel-update-millionaire-cabinet-minister-queues-for-free-place-at-church-school-competing-with-parents-who-cant-afford-the-fees-at-independent-schools/', 'title': 'Qamel update: Millionaire cabinet minister queues for free place at church school, competing with parents who can’t afford the fees at independent schools'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/forget-the-retired-politicians-posing-as-hackneyed-political-commentators/', 'title': 'Forget the retired politicians posing as hackneyed political commentators'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/at-least-one-person-has-woken-up-to-the-fact-that-the-lower-water-and-electricity-tariffs-are-a-scam-because-the-eco-reduction-has-been-removed/', 'title': 'At least one person has woken up to the fact that the lower water and electricity tariffs are a scam because the eco-reduction has been removed'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/martin-schulz-calls-on-germans-to-vote-so-as-to-make-a-german-president-of-the-european-commission/', 'title': 'Martin Schulz calls on Germans to vote so as to make a German president of the European Commission'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/norman-lowells-bank-fraud-more-details/', 'title': 'Norman Lowell’s bank fraud – more details'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/knock-me-out-again-edward-thats-just-amazing/', 'title': 'Knock me out again, Edward. That’s just amazing.'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/up-for-discussion-the-most-interesting-comment-that-came-in-today/', 'title': 'Up for discussion: the most interesting comment that came in today'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/this-is-insanely-unjust/', 'title': 'This is insanely unjust'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/deficit-widens-by-eur55-2-million-over-same-period-last-year/', 'title': 'Deficit widens by Eur55.2 million over same period last year'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/court-protests-that-psychiatrist-is-taking-too-long-to-file-his-report-court-then-discovers-that-psychiatrist-died-two-years-ago/', 'title': 'Court protests that psychiatrist is taking too long to file his report; court then discovers that psychiatrist died seven years ago'}
{'date': '2014-05-31', 'url': 'https://daphnecaruanagalizia.com/2014/05/a-cargo-of-green-soap-for-franco-debono/', 'title': 'A cargo of green soap for Franco Debono'}
https://daphnecaruanagalizia.com/2014/6
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/not-even-capable-of-being-honest-and-straightforward-about-what-bridget-jones-would-have-called-his-mini-breaks/', 'title': 'Not even capable of being honest and straightforward about what Bridget Jones would have called his mini-breaks'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/anton-b-dougall-and-leo-brincat-how-very-liberal-and-progressive/', 'title': 'Anton B. Dougall and Leo Brincat: how very liberal and progressive'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/how-can-anybody-be-so-vile-as-to-carry-on-being-despicable-and-inhumane-to-those-who-endure-this/', 'title': 'How can anybody be so vile as to carry on being despicable and inhumane to those who endure this?'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/and-there-are-naive-fools-who-think-that-legalising-cannabis-will-mean-no-illegal-supply/', 'title': 'And there are naive fools who think that legalising cannabis will mean no illegal supply'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/shame-he-doesnt-live-in-malta-he-could-have-got-a-job-at-the-office-of-the-prime-minister/', 'title': 'Shame he doesn’t live in Malta. He could have got a job at the Office of the Prime Minister.'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/a-hasla-from-the-head-of-state/', 'title': 'A ‘hasla’ from the head of state'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/lousy-father-of-the-year-award-sting/', 'title': 'Lousy Father of the Year Award: Sting.'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/oooooops/', 'title': 'Oooooops'}
{'date': '2014-06-30', 'url': 'https://daphnecaruanagalizia.com/2014/06/so-why-did-they-appoint-him-in-the-first-place-the-consequences-were-not-hard-to-predict/', 'title': 'So why did they appoint him in the first place? The consequences were not hard to predict.'}
{'date': '2014-06-29', 'url': 'https://daphnecaruanagalizia.com/2014/06/the-newest-maltese-citizens-are-called-zveyrone-netsrik-jaceyrhaer-zarkareia-amporn-chinenye-enonima-kobbun-gundula-limoni-hunter-and-loic/', 'title': 'The newest Maltese citizens are called Zveyrone, Netsrik, Jaceyrhaer, Zarkareia, Amporn, Chinenye, Enonima, Kobbun, Gundula, Limoni, Hunter and Loic'}
{'date': '2014-06-29', 'url': 'https://daphnecaruanagalizia.com/2014/06/the-government-finds-money-for-the-things-it-wants-to/', 'title': 'The government finds money for the things it wants to'}
https://daphnecaruanagalizia.com/2014/7
{'date': '2014-07-31', 'url': 'https://daphnecaruanagalizia.com/2014/07/the-libyan-writer-hisham-matars-excellent-article-for-the-new-yorker-today/', 'title': 'The Libyan writer Hisham Matar’s excellent article for The New Yorker today'}
{'date': '2014-07-31', 'url': 'https://daphnecaruanagalizia.com/2014/07/comment-of-the-week-12/', 'title': 'Comment of the week'}
{'date': '2014-07-31', 'url': 'https://daphnecaruanagalizia.com/2014/07/martin-galea-says-he-heard-his-captors-discuss-killing-him/', 'title': 'Martin Galea says he heard his captors discuss killing him'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/i-imagine-this-is-the-same-khaled-ibrahim-ben-nasan-who-is-ambassador-mannies-friend-as-quoted-in-malta-today/', 'title': 'I imagine this is the same Khaled Ibrahim Ben Nasan who is Ambassador Mannie’s friend as quoted in Malta Today'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/john-dalli-thinks-he-is-right-in-that-libya-should-have-remained-under-the-control-of-the-gaddafis/', 'title': 'John Dalli thinks he is right in that Libya should have remained under the control of the Gaddafis'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/if-you-want-to-know-what-happened-to-martin-galea-miriam-why-dont-you-just-ask-him/', 'title': 'If you want to know what happened to Martin Galea, Miriam, why don’t you just ask him?'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/and-heres-another-man-who-needs-to-grow-up/', 'title': 'And here’s another man who needs to grow up'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/luciano-busuttil-has-pronounced-himself-on-the-matter-of-elections-and-their-suspension/', 'title': 'Luciano Busuttil has pronounced himself on the matter of elections and their suspension'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/tomorrow-in-the-malta-independent/', 'title': 'Tomorrow in The Malta Independent'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/do-you-have-to-be-a-liar-to-be-a-malta-labour-party-politician/', 'title': 'Do you have to be a liar to be a Malta Labour Party politician?'}
{'date': '2014-07-30', 'url': 'https://daphnecaruanagalizia.com/2014/07/taghna-lkoller-robert-musumeci-has-just-been-appointed-to-the-civil-protection-scientific-committee/', 'title': 'Taghna Lkoller Robert Musumeci has just been appointed to the Civil Protection Scientific Committee'}
https://daphnecaruanagalizia.com/2014/8
{'date': '2014-08-31', 'url': 'https://daphnecaruanagalizia.com/2014/08/enough-already/', 'title': 'Enough already'}
{'date': '2014-08-31', 'url': 'https://daphnecaruanagalizia.com/2014/08/what-disgusting-hypocrisy-chinese-dictatorship-methods/', 'title': 'What disgusting hypocrisy – Chinese dictatorship methods'}
{'date': '2014-08-31', 'url': 'https://daphnecaruanagalizia.com/2014/08/star-guest-post-liberian-ethelbert-cooper-a-front-for-the-chinese-now-effectively-controls-gasol-plc/', 'title': 'Star guest post: Liberian Ethelbert Cooper, a front for the Chinese, now effectively controls Gasol plc'}
{'date': '2014-08-30', 'url': 'https://daphnecaruanagalizia.com/2014/08/english-lessons-for-immigrants/', 'title': 'English lessons for immigrants'}
{'date': '2014-08-30', 'url': 'https://daphnecaruanagalizia.com/2014/08/comment-of-the-week-13/', 'title': 'Comment of the week'}
{'date': '2014-08-30', 'url': 'https://daphnecaruanagalizia.com/2014/08/washed-up-hotel-singer-update/', 'title': 'Washed-up Taghna Lkoll hotel singer update'}
{'date': '2014-08-29', 'url': 'https://daphnecaruanagalizia.com/2014/08/putting-bottle-milk-on-a-par-with-cigarettes-and-casinos-how-very-shocking/', 'title': 'Putting bottle-milk on a par with cigarettes and casinos: how very shocking'}
{'date': '2014-08-29', 'url': 'https://daphnecaruanagalizia.com/2014/08/this-woman-has-some-nerve/', 'title': 'This woman has some nerve'}
{'date': '2014-08-29', 'url': 'https://daphnecaruanagalizia.com/2014/08/de-tinks-dey-arrrre-goink-well-tenks-to-de-taghna-lkoll-viva-joseph/', 'title': 'De tinks dey aRRRRe goink well tenks to de taghna lkoll. VIVA JOSEPH.'}
{'date': '2014-08-29', 'url': 'https://daphnecaruanagalizia.com/2014/08/employers-alarmed-while-pm-creates-problem-and-plays-with-bucket-of-water/', 'title': 'Employers alarmed while PM creates problem and plays with bucket of water'}
{'date': '2014-08-29', 'url': 'https://daphnecaruanagalizia.com/2014/08/fdi-fell-by-3-billion-euros-last-year-but-the-pm-is-busy-with-the-hole-in-his-bucket/', 'title': 'FDI fell by 3 billion euros last year, but the PM is busy with the hole in his bucket'}
https://daphnecaruanagalizia.com/2014/9
{'date': '2014-09-02', 'url': 'https://daphnecaruanagalizia.com/2014/09/il-guyana-paint-his-nails-give-him-a-skirt-and-some-bangles-and-hell-pass-muster-anyway/', 'title': 'Il-Guyana: paint his nails, give him a skirt and some bangles, and he’ll pass muster anyway'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/more-inspiration-for-joseph-muscat-co-from-their-friends-the-dictators/', 'title': 'More inspiration for Joseph Muscat & Co, from their friends the dictators'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/taghna-lkoll-bus-update/', 'title': 'Taghna Lkoll bus update'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/what-a-stupid-move/', 'title': 'What a stupid move'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/the-taghna-lkoll-bus-service-so-much-better-than-arriva/', 'title': 'The Taghna Lkoll bus service – so much better than Arriva'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/for-heavens-sake-insurance-is-not-the-issue-here/', 'title': 'For heaven’s sake, INSURANCE is not the issue here'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/inspiration-for-joseph-muscat-co/', 'title': 'Inspiration for Joseph Muscat & Co'}
{'date': '2014-09-01', 'url': 'https://daphnecaruanagalizia.com/2014/09/how-can-couples-save-if-only-one-of-them-works/', 'title': 'How can couples save if only one of them works?'}
https://daphnecaruanagalizia.com/2014/10
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/breaking-news-john-dalli-bought-a-chinese-slave-from-leisure-clothing/', 'title': 'UPDATED: John Dalli bought a Chinese slave from Leisure Clothing'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/hey-there-codrutas-husband-you-have-a-friend-in-china/', 'title': 'Hey there, Codruta’s husband: you have a friend in China'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/slave-trafficking-at-china-government-owned-leisure-clothing-women-sold-as-householdsex-slaves/', 'title': 'Slave-trafficking at China-government-owned Leisure Clothing: women sold as household/sex slaves'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/sai-mizzi-is-she-a-glorified-slave-trader/', 'title': 'Sai Mizzi: is she a glorified slave trader?'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/slave-labour-factory-leisure-clothing-is-owned-and-run-by-the-chinese-government/', 'title': 'Slave-labour factory Leisure Clothing is owned and run by the Chinese government'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/time-for-another-name-change-slave-labour-party-slp/', 'title': 'Time for another name change: SLAVE LABOUR PARTY (SLP)'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/team-pl-the-chinese-slave-connection/', 'title': 'UPDATED WITH JOHN DALLI/Team PL: the Chinese slave connection'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/bortex-chairman-lino-spiteri-should-say-why-many-bortex-clothes-have-for-25-years-been-made-by-people-trafficked-into-slavery/', 'title': 'Bortex chairman Lino Spiteri should say why many Bortex clothes have for 25 years been made by people trafficked into slavery'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/while-workers-were-kept-in-indentured-servitude-at-leisure-clothing/', 'title': 'While workers were kept in indentured servitude at Leisure Clothing'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/the-whiff-of-corruption-has-become-a-stench/', 'title': 'The whiff of corruption has become a stench'}
{'date': '2014-10-31', 'url': 'https://daphnecaruanagalizia.com/2014/10/current-and-former-presidents-of-din-l-art-helwa-write-stiff-letter-to-the-prime-minister/', 'title': 'Current and former presidents of Din L-Art Helwa write stiff letter to the prime minister'}
https://daphnecaruanagalizia.com/2014/11
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/meanwhile-the-public-service-broadcaster-expends-public-money-on-the-real-news/', 'title': 'Meanwhile, the public service broadcaster expends public money on the real news'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/the-police-minister-needs-to-speak-up-did-he-really-have-eur2-million-invested-with-ryan-schembri/', 'title': 'The Police Minister needs to speak up: did he really have Eur2 million ‘invested’ with Ryan Schembri?'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/why-is-the-labour-party-so-obsessed-with-sex-its-been-this-way-as-long-as-i-remember/', 'title': 'Why is the Labour Party so obsessed with sex? It’s been this way as long as I remember.'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/i-have-a-filed-a-police-report-against-the-chairman-of-the-malta-council-for-science-and-technology/', 'title': 'I have filed a police report against the chairman of the Malta Council for Science and Technology'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/has-steven-morrison-smith-absconded/', 'title': 'Has Steven Morrison Smith absconded?'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/this-is-what-we-have-come-to/', 'title': 'This is what we have come to'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/radio-news-scotland-is-looking-for-stephen-morrison-smith/', 'title': 'Radio News Scotland is looking for Stephen Morrison Smith'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/exclusive-the-income-tax-management-act-empowers-editors-to-demand-the-inland-revenue-declarations-of-all-present-and-former-mps/', 'title': 'EXCLUSIVE: The Income Tax Management Act empowers editors to demand the Inland Revenue declarations of all present and former MPs'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/indications-are-intensifying-that-manuel-mallias-driver-could-have-been-involved-in-a-drug-deal/', 'title': 'Indications are intensifying that Manuel Mallia’s driver could have been involved in a drug deal'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/those-of-you-who-think-malta-today-is-pursuing-the-shooting-story-in-a-spirit-of-pure-journalism-are-mistaken/', 'title': 'Those of you who think Malta Today is pursuing the ‘shooting’ story in a spirit of pure journalism are mistaken'}
{'date': '2014-11-30', 'url': 'https://daphnecaruanagalizia.com/2014/11/in-manuel-mallias-position-i-would-have-resigned-marlene-farrugia/', 'title': '“In Manuel Mallia’s position, I would have resigned” – Marlene Farrugia'}
https://daphnecaruanagalizia.com/2014/12
{'date': '2014-12-31', 'url': 'https://daphnecaruanagalizia.com/2014/12/a-caldo-manuel-mallia-and-codruta-cristian-fly-to-bologna-for-il-capodanno/', 'title': 'A caldo! Ai termini! Manuel ‘OK Siehbi’ Mallia and Codruta Cristian fly to Bologna for il Capodanno'}
{'date': '2014-12-31', 'url': 'https://daphnecaruanagalizia.com/2014/12/this-is-the-police-sergeant-who-was-involved-in-that-lapdancing-club-fracas/', 'title': 'This is the police sergeant who was involved in that lapdancing club fracas'}
{'date': '2014-12-31', 'url': 'https://daphnecaruanagalizia.com/2014/12/a-good-gesture/', 'title': 'A good gesture'}
{'date': '2014-12-31', 'url': 'https://daphnecaruanagalizia.com/2014/12/one-of-the-women-at-leisure-clothing-says-she-is-from-north-korea/', 'title': 'One of the women at Leisure Clothing says she is from North Korea'}
{'date': '2014-12-31', 'url': 'https://daphnecaruanagalizia.com/2014/12/china-owned-businesses-in-malta-are-subject-to-maltese-not-chinese-labour-laws/', 'title': 'China-owned businesses in Malta are subject to Maltese, not Chinese, labour laws'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/is-electrogas-still-using-the-land-for-free-or-is-it-now-paying-a-fair-price-for-rent/', 'title': 'Is Electrogas still using the land for free, even though it’s done nothing since?'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/you-have-to-be-so-taghna-lkoll-shameless-to-complain-about-this-after-the-taghna-lkoll-mess-youve-just-made/', 'title': 'You have to be so Taghna Lkoll shameless to complain about this after the Taghna Lkoll mess you’ve just made'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/how-many-of-them-have-been-put-on-the-state-payroll-we-should-be-told/', 'title': 'How many of them have been put on the state payroll? We should be told.'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/more-crucially-what-is-the-government-going-to-do-with-those-250-million-euros/', 'title': 'More crucially, what is the government going to do with those 250 million euros?'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/is-somebody-able-to-explain-this/', 'title': 'Is somebody able to explain this?'}
{'date': '2014-12-30', 'url': 'https://daphnecaruanagalizia.com/2014/12/leisure-clothing-more-details-of-the-terrible-scandal-emerge-in-court-today/', 'title': 'Leisure Clothing: more details of the terrible scandal emerge in court today'}
https://daphnecaruanagalizia.com/2015/1
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/the-hunters-are-emailing-round-for-support-care-to-give-them-some/', 'title': 'The hunters are emailing round for support. Care to give them some?'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/three-cheers/', 'title': 'Three cheers'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/please-share-this-my-new-design-for-the-market-stalls/', 'title': 'Please share this: my new design for the market stalls'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/we-should-not-have-any-kind-of-stall-irrespective-of-what-they-look-like/', 'title': 'We should not have ANY kind of stall – irrespective of what they look like'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/wheres-the-chairman-of-valletta-rehab/', 'title': 'Where’s the chairman of Valletta Rehab?'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/may-2013-interview-with-chris-cardona-labour-pledged-new-location-to-market-hawkers-before-the-general-election/', 'title': 'May 2013 interview with Chris Cardona: Labour pledged new location to market hawkers BEFORE the general election'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/at-last-kenneth-zammit-tabona-speaks-up/', 'title': 'At last, Kenneth Zammit Tabona speaks up'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/so-predictable-muscat-responds-to-public-outrage-by-changing-the-stalls-but-keeping-the-market/', 'title': 'So predictable: Muscat responds to public outrage by ‘changing the stalls’ but keeping the market'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/renzo-pianos-studio-in-paris-on-the-subject-of-the-market-its-a-shame-its-like-making-a-cake-and-then-spitting-on-it-i-am-crying/', 'title': 'Renzo Piano’s studio in Paris on the subject of the market: “It’s a shame. It’s like making a cake and then spitting on it. I am crying.”'}
{'date': '2015-01-31', 'url': 'https://daphnecaruanagalizia.com/2015/01/watch-this-tvm-video-about-the-parliament-house-market-the-market-is-going-to-be-there-even-on-sunday/', 'title': 'Watch this TVM video about the Parliament House market: the market is going to be there even on Sunday'}
{'date': '2015-01-30', 'url': 'https://daphnecaruanagalizia.com/2015/01/h-p-baxxters-latest-youtube-video/', 'title': 'H. P. Baxxter’s latest YouTube video'}
https://daphnecaruanagalizia.com/2015/2
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/ok-mario-ara-mall-finanzi-biex-naghtu-go-ahead-etc-prime-ministers-email-decision-on-4-2-million-euro-government-bail-out-of-bankrupt-company/', 'title': '“ok – mario ara mall finanzi biex naghtu go ahead etc” – prime minister’s email decision on 4.2 million euro government bail-out of bankrupt company'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/somebody-please-tell-me-this-is-a-bad-dream/', 'title': 'No, this is not a spoof video. And it’s not a bad dream, either.'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/a-lovely-photo-of-that-crook-tony-debono-currently-starring-in-the-trials-of-the-farrugia-brothers/', 'title': 'A lovely photo of that crook Tony Debono, currently starring in the trials of the Farrugia brothers'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/qormi-mayor-tweets-kaxxa-ta-malta-mimlija/', 'title': 'Qormi Mayor tweets: “Kaxxa ta’ Malta mimlija”'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/maltas-bbc-news-digs-hard-into-the-cafe-premier-government-scandal/', 'title': 'Malta’s BBC News digs hard into the Cafe Premier government scandal'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/please-share-this-2/', 'title': 'Please share this'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/i-try-to-understand-the-extent-and-reason-for-their-neurotic-fixation-and-come-to-the-conclusion-that-they-need-help/', 'title': 'I try to understand the extent and reason for their neurotic fixation, and come to the conclusion that they need help'}
{'date': '2015-02-28', 'url': 'https://daphnecaruanagalizia.com/2015/02/i-see-now-were-going-to-scare-off-the-tourists/', 'title': 'I see – now we’re going to scare off the tourists'}
{'date': '2015-02-27', 'url': 'https://daphnecaruanagalizia.com/2015/02/they-took-eur4-2-million-off-the-taxpayer-and-they-still-havent-paid-for-their-fruit-and-veg/', 'title': 'They took Eur4.2 million off the taxpayer and they still haven’t paid for their fruit and veg'}
{'date': '2015-02-27', 'url': 'https://daphnecaruanagalizia.com/2015/02/womens-fun-day-at-smart-city-a-day-packed-with-makeup-hair-beauty-stalls-and-more/', 'title': '“Women’s fun day at Smart City. A day packed with makeup, hair, beauty stalls and more.”'}
{'date': '2015-02-27', 'url': 'https://daphnecaruanagalizia.com/2015/02/jeffrey-pullicino-orlandos-daughter-put-on-the-state-payroll-in-deputy-pms-office/', 'title': 'Jeffrey Pullicino Orlando’s daughter put on the state payroll in deputy PM’s office'}
https://daphnecaruanagalizia.com/2015/3
{'date': '2015-03-29', 'url': 'https://daphnecaruanagalizia.com/2015/03/meet-your-commissioner-european-voice-profiles-il-guy/', 'title': 'Meet your Commissioner: European Voice profiles Il-Guy'}
{'date': '2015-03-28', 'url': 'https://daphnecaruanagalizia.com/2015/03/while-on-the-subject-of-mental-illness-and-how-it-is-not-stigmatised-in-malta/', 'title': 'While on the subject of mental illness, and how it is NOT stigmatised in Malta'}
{'date': '2015-03-28', 'url': 'https://daphnecaruanagalizia.com/2015/03/update-john-dalli-tyre-ltd-mary-swan-and-american-christians-who-had-their-money-stolen/', 'title': 'Update: John Dalli, Tyre Ltd, Mary Swan, and American Christians who had their money stolen'}
{'date': '2015-03-28', 'url': 'https://daphnecaruanagalizia.com/2015/03/please-share-this-on-facebook-2/', 'title': 'Please share this on Facebook'}
{'date': '2015-03-28', 'url': 'https://daphnecaruanagalizia.com/2015/03/incredible-i-am-speechless-literally/', 'title': 'Incredible. I am speechless. Literally.'}
{'date': '2015-03-28', 'url': 'https://daphnecaruanagalizia.com/2015/03/the-same-thing-had-happened-17-years-ago-on-a-silkair-flight/', 'title': 'The same thing had happened 17 years ago on a SilkAir flight'}
{'date': '2015-03-27', 'url': 'https://daphnecaruanagalizia.com/2015/03/it-is-insanity-that-somebody-like-this-would-be-allowed-anywhere-near-the-controls-of-a-commercial-airliner/', 'title': 'It is insanity that somebody like this would be allowed anywhere near the controls of a commercial airliner'}
{'date': '2015-03-27', 'url': 'https://daphnecaruanagalizia.com/2015/03/erin-tanti-and-andreas-lubitz-side-by-side-in-the-news/', 'title': 'Erin Tanti and Andreas Lubitz, side by side in the news'}
{'date': '2015-03-27', 'url': 'https://daphnecaruanagalizia.com/2015/03/its-the-co-pilots-parents-for-whom-i-feel-most-sorry/', 'title': 'It’s the co-pilot’s parents for whom I feel most sorry'}
{'date': '2015-03-27', 'url': 'https://daphnecaruanagalizia.com/2015/03/smart-casual/', 'title': '‘Smart casual’'}
{'date': '2015-03-27', 'url': 'https://daphnecaruanagalizia.com/2015/03/i-couldnt-agree-less-with-this-piece-in-the-guardian/', 'title': 'I couldn’t agree less with this piece in The Guardian'}
https://daphnecaruanagalizia.com/2015/4
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/a-couple-of-backwoodsmen-suffering-through-the-formalities-and-trying-to-look-engaged/', 'title': 'A couple of backwoodsmen, suffering through the formalities and trying to look engaged'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/search-for-sai-please-help-by-sharing-this-missing-person-poster-on-social-media/', 'title': 'Search for Sai: please help by sharing this ‘Missing Person’ poster on social media'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/the-institute-of-maltese-journalists-has-accepted-sponsorship-from-crystal-finance/', 'title': 'The Institute of Maltese Journalists has accepted sponsorship from Crystal Finance'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/the-search-for-sai-has-found-her-husbands-clock-instead/', 'title': 'The search for Sai has found her husband’s clock instead'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/row-in-malta-over-villa-guardamangia-makes-it-to-the-telegraph/', 'title': '‘Row in Malta’ over Villa Guardamangia makes it to The Telegraph'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/stop-the-press-franco-is-reading-a-book/', 'title': 'Stop the press: Franco is reading a book'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/look-at-him-grovel/', 'title': 'Look at him grovel'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/pms-special-envoy-wants-you-to-know-that-he-is-not-a-sheep/', 'title': 'PM’s special envoy wants you to know that he is not a sheep'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/sleazy/', 'title': 'Sleazy'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/the-search-for-sai-continues-the-laugh-out-loud-installment/', 'title': 'The search for Sai continues: the Laugh Out Loud installment'}
{'date': '2015-04-30', 'url': 'https://daphnecaruanagalizia.com/2015/04/some-of-my-readers-have-asked-about-the-1958-riots/', 'title': 'Some of my readers have asked about the 1958 riots'}
https://daphnecaruanagalizia.com/2015/5
{'date': '2015-05-31', 'url': 'https://daphnecaruanagalizia.com/2015/05/big-story-in-the-malta-independent-joseph-muscat-and-konrad-mizzi-lied-through-their-teeth-about-waiver/', 'title': 'Big story in The Malta Independent: Joseph Muscat and Konrad Mizzi lied through their teeth about waiver'}
{'date': '2015-05-31', 'url': 'https://daphnecaruanagalizia.com/2015/05/henry-mifsud-was-too-busy-stealing-sausages-from-the-kitchen/', 'title': 'Henry Mifsud was too busy stealing sausages from the kitchen'}
{'date': '2015-05-31', 'url': 'https://daphnecaruanagalizia.com/2015/05/more-taghna-lkoll-corruption-you-just-cant-keep-up/', 'title': 'More Taghna Lkoll corruption – you just can’t keep up'}
{'date': '2015-05-30', 'url': 'https://daphnecaruanagalizia.com/2015/05/two-pictures-which-sum-up-present-day-malta/', 'title': 'Two pictures which sum up present-day Malta under Tacky Taghna Lkoll'}
{'date': '2015-05-30', 'url': 'https://daphnecaruanagalizia.com/2015/05/this-is-where-maltas-lack-of-education-and-general-ignorance-really-shows-through/', 'title': 'This is where Malta’s lack of education and general ignorance really show through'}
{'date': '2015-05-30', 'url': 'https://daphnecaruanagalizia.com/2015/05/these-comments-have-come-in-about-dalli-fraudster-associate-mary-swan/', 'title': 'These comments have come in about Dalli fraudster associate ‘Mary Swan’'}
{'date': '2015-05-30', 'url': 'https://daphnecaruanagalizia.com/2015/05/the-lies-are-getting-worse/', 'title': 'The lies are getting worse'}
{'date': '2015-05-30', 'url': 'https://daphnecaruanagalizia.com/2015/05/the-arrogance-is-getting-worse/', 'title': 'The arrogance is getting worse'}
{'date': '2015-05-29', 'url': 'https://daphnecaruanagalizia.com/2015/05/pansy-update-jasons-brought-them-out-for-the-lads-again/', 'title': 'Pansy update: Jason’s brought them out for the lads again'}
{'date': '2015-05-29', 'url': 'https://daphnecaruanagalizia.com/2015/05/the-quarry-where-the-cruise-liner-terminal-is-to-be-located/', 'title': 'The quarry where the cruise liner terminal is to be located'}
{'date': '2015-05-29', 'url': 'https://daphnecaruanagalizia.com/2015/05/this-is-twanny-bronkas-call-for-expressions-of-interest-for-a-cruise-liner-terminal-and-yacht-marina/', 'title': 'This is Twanny Bronka’s call for expressions of interest for a cruise liner terminal and yacht marina'}
https://daphnecaruanagalizia.com/2015/6
{'date': '2015-06-30', 'url': 'https://daphnecaruanagalizia.com/2015/06/shareholders-the-government-of-malta-and-karl-cutajar-b-1997/', 'title': 'Shareholders: the government of Malta and Karl Cutajar (b. 1997)'}
{'date': '2015-06-30', 'url': 'https://daphnecaruanagalizia.com/2015/06/transport-minister-wears-baggy-old-t-shirt-to-parliament/', 'title': 'Transport Minister wears baggy old T-shirt to parliament'}
{'date': '2015-06-30', 'url': 'https://daphnecaruanagalizia.com/2015/06/anton-30-homes-refalos-facebook-page-is-on-the-governments-official-site/', 'title': 'Anton ‘Thirty Homes’ Refalo’s Facebook page is on the government’s official site'}
{'date': '2015-06-30', 'url': 'https://daphnecaruanagalizia.com/2015/06/adviser-to-the-family-minister-arraigned-in-court-on-charges-of-harassing-his-brother-in-law/', 'title': 'Adviser to the Family Minister arraigned in court on charges of harassing his brother-in-law'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/how-to-qualify-to-become-chief-of-staff-to-the-minister-for-the-economy/', 'title': 'How to qualify to become chief of staff to the Minister for the Economy'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/columbia-arrests-22-international-drug-traffickers-including-maltese/', 'title': 'Colombia arrests 20+ international drug traffickers; one or more to be extradited to Malta'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/turning-parliament-into-a-kazin-one-open-shirt-at-a-time/', 'title': 'Turning parliament into a kazin, one open shirt at a time'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/we-have-to-examine-a-new-angle-to-this-corruption-web/', 'title': 'We have to examine a new angle to this corruption web'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/why-hasnt-the-foreign-minister-demanded-the-resignation-of-maltas-ambassador-to-the-holy-see/', 'title': 'Why hasn’t the Foreign Minister demanded the resignation of Malta’s ambassador to the Holy See?'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/a-photograph-of-the-prime-ministers-special-envoy-jetting-back-to-malta/', 'title': 'A photograph of the Prime Minister’s Special Envoy jetting back to Malta'}
{'date': '2015-06-29', 'url': 'https://daphnecaruanagalizia.com/2015/06/daniel-zammit-raids-illegal-gambling-operators-oct-2013-nobody-charged-yet/', 'title': 'Daniel and Roderick Zammit raid illegal gambling operators Oct 2013; nobody charged yet'}
https://daphnecaruanagalizia.com/2015/7
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/aw-sinjura-ejja-ara-xpassaport-sabih-ghandi-ghalik-l-aqwa-kwalita-issiefer-fejn-trid-bast-quality/', 'title': '“Aw sinjura, ejja ara x’passaport sabih ghandi ghalik. L-aqwa kwalita’. Issiefer fejn trid. Bast quality.”'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/mary-swan-and-entourage-have-packed-up-and-left-sliema/', 'title': '‘Mary Swan’ and entourage have packed up and left Sliema'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/exclusive-photographs-of-the-official-opening-of-maltas-shanghai-office/', 'title': 'Exclusive: photographs of the official opening of Malta’s Shanghai office'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/this-is-one-of-the-most-corrupt-families-in-malta/', 'title': 'This is one of the most corrupt families in Malta'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/how-primitive-are-there-no-pollution-control-laws-for-this-kind-of-thing/', 'title': 'How primitive – are there no pollution-control laws for this kind of thing?'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/identity-maltas-executive-chairman-todays-update/', 'title': 'Identity Malta’s executive chairman: today’s update'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/the-media-and-corruption/', 'title': 'The media and corruption'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/ships-that-passed-in-the-night/', 'title': 'Ships that passed in the night'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/people-connected-to-politicians-have-got-to-be-more-careful/', 'title': 'People connected to politicians have got to be more careful'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/the-gaming-activities-are-legal-but-they-are-used-for-laundering/', 'title': 'The gaming activities are legal. But they are used for laundering.'}
{'date': '2015-07-31', 'url': 'https://daphnecaruanagalizia.com/2015/07/franco-debono-still-has-a-police-sentry-at-his-mothers-door/', 'title': 'Franco Debono still has a police sentry at his (mother’s) door'}
https://daphnecaruanagalizia.com/2015/8
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/columbia-journalism-review-how-democratators-threaten-press-freedomplease-read-and-share/', 'title': 'Columbia Journalism Review: How ‘democratators’ threaten press freedom/Please read and share'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/labour-party-deputy-leadership-contender-banned-by-court-order-from-holding-public-office-given-senior-post-by-home-affairs-ministry/', 'title': 'UPDATED/Labour Party deputy leadership contender, serving suspended prison sentence and banned by court order from holding public office, given senior post by Home Affairs Ministry'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/beautiful-inside-and-out/', 'title': '“Beautiful inside and out”'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/its-monday-but-the-chairman-put-in-a-little-overtime-and-went-to-the-office/', 'title': 'It’s Monday, but the chairman put in a little overtime and went to the office'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/careful-with-those-coffee-grinds-when-using-your-grounding-machine/', 'title': 'Careful with those coffee grinds when using your grounding machine'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/i-did-say-that-it-was-the-kind-of-thing-vladimir-putin-would-do/', 'title': 'I did say that it was the kind of thing Vladimir Putin would do'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/jahasra-3/', 'title': 'UPDATED/Jahasra'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/are-they-planning-an-election-they-havent-told-us-about/', 'title': 'Are they planning an election they haven’t told us about?'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/guest-postmintoff-or-how-i-let-down-the-nation/', 'title': 'GUEST POST/Mintoff, or how I let down the nation'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/i-think-corruption-was-always-the-intention-dont-you/', 'title': 'I think corruption was always the intention, don’t you?'}
{'date': '2015-08-31', 'url': 'https://daphnecaruanagalizia.com/2015/08/its-all-due-to-intense-loneliness-among-crowds/', 'title': 'It’s all due to intense loneliness among crowds'}
https://daphnecaruanagalizia.com/2015/9
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/now-even-maltas-joke-car-registration-plates-have-taghna-lkoll-spallink/', 'title': 'Now even Malta’s joke car registration plates have Taghna Lkoll spallink'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/identity-maltas-knock-off-logo/', 'title': 'Identity Malta’s knock-off logo'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/last-week-tonight-with-john-oliver-migrants-and-refugees-hbo/', 'title': 'Last Week Tonight with John Oliver: Migrants and Refugees (HBO'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/north-korean-slave-workers-at-leisure-clothing-make-the-news-outside-malta/', 'title': 'Another scandal: The Telegraph reports today that Malta has issued visas to 93 North Korean slave workers since March 2013'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/powster-ghal-gbir-ta-fondi/', 'title': 'Powster għal ġbir ta’ fondi'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/luciano-the-liquidator/', 'title': 'Luciano the Liquidator'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/snap-ara-my-dress-is-like-yours/', 'title': 'Snap: “Ara, my dress is like yours”'}
{'date': '2015-09-30', 'url': 'https://daphnecaruanagalizia.com/2015/09/phyllis-muscat-is-in-new-york-with-her-friends-joseph-and-michelle/', 'title': 'Phyllis Muscat is in New York with her friends Joseph and Michelle'}
{'date': '2015-09-29', 'url': 'https://daphnecaruanagalizia.com/2015/09/should-we-be-surprised/', 'title': 'Should we be surprised?'}
{'date': '2015-09-29', 'url': 'https://daphnecaruanagalizia.com/2015/09/hes-still-hanging-around/', 'title': 'He’s still hanging around'}
{'date': '2015-09-29', 'url': 'https://daphnecaruanagalizia.com/2015/09/how-dramatic/', 'title': 'How dramatic'}
https://daphnecaruanagalizia.com/2015/10
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/maltas-ambassador-to-belgium-explains-his-work-niddeffsu-ahna-fir-relations/', 'title': 'Malta’s ambassador to Belgium explains his work: “Niddeffsu ahna fir-relations.”'}
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/looks-like-the-prime-minister-has-bought-michelles-christmas-present-already/', 'title': 'Looks like the prime minister has bought Michelle’s Christmas present already'}
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/the-french-respond-to-joseph-muscats-tweet-about-the-perils-of-salami/', 'title': 'The French respond to Joseph Muscat’s tweet about the perils of salami'}
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/looking-sharp-mr-chetcuti/', 'title': 'Looking sharp, Mr Chetcuti'}
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/news-from-the-pre-decided-tender-front/', 'title': 'News from the Pre-decided Tender front'}
{'date': '2015-10-28', 'url': 'https://daphnecaruanagalizia.com/2015/10/man-in-staged-electoral-campaign-visit-put-on-state-payroll-at-transport-malta/', 'title': 'Man in staged electoral campaign “visit” put on state payroll at Transport Malta'}
{'date': '2015-10-27', 'url': 'https://daphnecaruanagalizia.com/2015/10/erin-tanti-pulls-out-of-university/', 'title': 'Erin Tanti pulls out of university'}
{'date': '2015-10-27', 'url': 'https://daphnecaruanagalizia.com/2015/10/the-department-of-information-gets-its-chrises-confused/', 'title': 'The Department of Information gets its Chrises confused'}
{'date': '2015-10-27', 'url': 'https://daphnecaruanagalizia.com/2015/10/ham-cancer-warning-is-muslim-conspiracy-says-leader-of-ghaqda-patriotti-maltin/', 'title': 'Ham cancer warning is “Muslim conspiracy”, says leader of Ghaqda Patriotti Maltin'}
{'date': '2015-10-27', 'url': 'https://daphnecaruanagalizia.com/2015/10/prime-minister-tweets-about-salami/', 'title': 'Prime minister tweets about salami'}
{'date': '2015-10-27', 'url': 'https://daphnecaruanagalizia.com/2015/10/is-this-a-stag-party-or-what/', 'title': 'UPDATED/Is this a stag party, or what?'}
https://daphnecaruanagalizia.com/2015/11
{'date': '2015-11-30', 'url': 'https://daphnecaruanagalizia.com/2015/11/army-ministers-communications-man-mocks-soldiers-and-says-they-have-no-balls/', 'title': 'Army Minister’s communications man mocks soldiers and says they have no balls'}
{'date': '2015-11-30', 'url': 'https://daphnecaruanagalizia.com/2015/11/and-in-other-news-jesmond-mugliett-is-learning-how-to-tango/', 'title': 'And in other news, Jesmond Mugliett is learning how to tango'}
{'date': '2015-11-30', 'url': 'https://daphnecaruanagalizia.com/2015/11/ceo-of-illegal-montekristo-zoo-a-lawyer-tries-to-shift-blame-for-tiger-incident-onto-maltas-low-standards/', 'title': 'CEO of illegal Montekristo zoo (a lawyer) tries to shift blame for tiger incident onto “Malta’s low standards”'}
{'date': '2015-11-30', 'url': 'https://daphnecaruanagalizia.com/2015/11/the-real-reason-that-the-welcome-ceremony-for-queen-elizabeth-had-to-be-shifted-from-the-palace-in-valletta/', 'title': 'The real reason that the welcome ceremony for Queen Elizabeth had to be shifted from the Palace in Valletta'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/tiger-incident-at-illegal-caqnu-zoo-makes-the-daily-mail-today/', 'title': 'Tiger incident at illegal Caqnu zoo makes the Daily Mail today'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/the-muscat-twins-go-to-lunch-with-the-commonwealth-spouses/', 'title': 'The Muscat twins and the prime minister’s mother go to lunch with the Commonwealth spouses'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/heres-another-way-of-looking-at-things/', 'title': 'Here’s another way of looking at things'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/last-nights-gown/', 'title': 'Last night’s gown'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/ronnie-pellegrini-is-also-on-the-local-governance-board/', 'title': 'Ronnie Pellegrini is also on the Local Governance Board and Malta Freeport Corporation board'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/now-we-know-why-helena-dalli-has-elastic-views-on-violent-threats/', 'title': 'Now we know why Helena Dalli has elastic views on violent threats'}
{'date': '2015-11-29', 'url': 'https://daphnecaruanagalizia.com/2015/11/siege-mentality-it-never-goes-away-does-it/', 'title': 'Siege mentality – it never goes away, does it'}
https://daphnecaruanagalizia.com/2015/12
{'date': '2015-12-31', 'url': 'https://daphnecaruanagalizia.com/2015/12/lets-end-the-year-on-a-festive-note-with-our-old-friend-rita/', 'title': 'Let’s end the year on a festive note with our old friend Rita the ‘Dessert’ Princess'}
{'date': '2015-12-31', 'url': 'https://daphnecaruanagalizia.com/2015/12/heres-another-one-who-thinks-hes-a-christmas-gift-that-keeps-on-giving/', 'title': 'Here’s another one who thinks he’s a Christmas gift that keeps on giving'}
{'date': '2015-12-31', 'url': 'https://daphnecaruanagalizia.com/2015/12/joseph-muscats-president-of-the-law-commission-really-wants-us-to-look-at-him/', 'title': 'Joseph Muscat’s President of the Law Commission really wants us to look at him this Christmas'}
{'date': '2015-12-31', 'url': 'https://daphnecaruanagalizia.com/2015/12/the-police-award-winning-parking/', 'title': 'The police: award-winning parking'}
{'date': '2015-12-30', 'url': 'https://daphnecaruanagalizia.com/2015/12/corrupt-ex-police-inspectors-san-anton-villa-for-sale-at/', 'title': 'Corrupt policeman’s San Anton villa for sale at €1.5 million'}
{'date': '2015-12-30', 'url': 'https://daphnecaruanagalizia.com/2015/12/former-police-army-minister-looks-to-buy-bright-yellow-ford-escort-mk-1/', 'title': 'Former Police & Army Minister looks to buy bright yellow Ford Escort Mk 1'}
{'date': '2015-12-30', 'url': 'https://daphnecaruanagalizia.com/2015/12/frankie-grima-u-chris-cardona-taghna-lkoll/', 'title': 'Frankie Grima u Chris Cardona Taghna Lkoll'}
{'date': '2015-12-30', 'url': 'https://daphnecaruanagalizia.com/2015/12/yet-another-room-with-a-view/', 'title': 'Yet another room with a view'}
{'date': '2015-12-30', 'url': 'https://daphnecaruanagalizia.com/2015/12/a-taghna-lkoll-appointment-to-the-un/', 'title': 'A Taghna Lkoll appointment to the UN'}
{'date': '2015-12-28', 'url': 'https://daphnecaruanagalizia.com/2015/12/is-that-a-big-man-or-has-dorianne-shrunk-the-kink-of-the-sawt-on-a-hot-cycle/', 'title': 'Is that a very big man or has Dorianne shrunk the Kink of the Sawt on a hot cycle?'}
{'date': '2015-12-28', 'url': 'https://daphnecaruanagalizia.com/2015/12/dorianne-and-jacob-dont-have-a-surname/', 'title': 'Dorianne and Jacob don’t have a surname, let alone his'}
https://daphnecaruanagalizia.com/2016/1
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/youd-think-theyd-have-the-sense-to-keep-this-exchange-private-over-coffee-or-a-drink/', 'title': 'You’d think they’d have the sense to keep this exchange private, over coffee or a drink'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/bunny-boiler-no-1-is-jealous-of-all-the-attention-im-paying-to-bunny-boiler-no-2/', 'title': 'Bunny Boiler No. 1 is jealous of all the attention I’m paying to Bunny Boiler No. 2'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/law-commissioner-says-tranquillity-is-one-of-my-pastimes/', 'title': 'Law Commissioner says: “Tranquillity is one of my pastimes.”'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/they-make-the-robber-barons-of-the-1980s-look-like-petty-criminals/', 'title': 'They make the political robber barons of the 1980s look like petty criminals'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/muscat-asked-schembri-whether-she-was-sitting-down-before-thrilling-her-like-father-christmas/', 'title': 'Muscat asked Schembri whether she was “sitting down” before thrilling her like Father Christmas'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/european-commission-investigating-maltas-visas-to-7000-algerians/', 'title': 'European Commission investigating Malta’s visas to 7,000 Algerians'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/ask-not-what-i-do-for-you-mrs-konrad-mizzis-contract-is-up-for-renewal/', 'title': '“Ask not what I do for you” – Mrs Konrad Mizzi’s contract is up for renewal'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/muscat-prepares-the-way-for-michael-falzon-to-become-deputy-leader-of-the-labour-party/', 'title': 'Muscat prepares the way for Michael Falzon to become Labour Party deputy leader'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/the-lithium-diarieschapter-4-the-canary-king-il-kink-tal-kanarini/', 'title': 'THE LITHIUM DIARIES/Chapter 4: The Canary King (Il-Kink tal-Kanalini)'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/the-lithium-diarieschapter-3-the-law-commissioner-says-his-reputation-is-worth-more-than-e10000/', 'title': 'THE LITHIUM DIARIES/Chapter 3: The Law Commissioner says his reputation is worth more than €10,000'}
{'date': '2016-01-31', 'url': 'https://daphnecaruanagalizia.com/2016/01/the-lithium-diarieschapter-2-the-law-commissioners-folders-of-comments-speeches-and-school-reports/', 'title': 'THE LITHIUM DIARIES/Chapter 2: The Law Commissioner’s folders of comments, speeches and school reports'}
https://daphnecaruanagalizia.com/2016/2
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/opposition-leaders-press-conference-outside-parliament-house/', 'title': 'Opposition leader’s press conference outside Parliament House this evening'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/now-theyre-not-even-pretending-to-work-for-their-money/', 'title': 'Now they’re not even pretending to work for their money'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/konrad-mizzi-has-explained-what-all-this-wealth-is-that-he-keeps-telling-us-about/', 'title': 'Konrad Mizzi has explained what all this wealth is that he keeps telling us about'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/top-comment-he-can-dissolve-his-company-tomorrow-and-set-up-another-five-in-panama-the-day-after/', 'title': 'TOP COMMENT: He can dissolve his company tomorrow and set up another five in Panama the day after'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/in-the-azerbaijani-press/', 'title': 'In the Azerbaijani press'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/now-where-have-i-put-those-assets/', 'title': 'Now where have I put those assets?'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/money-laundering-what-money-laundering/', 'title': 'Money laundering? What money laundering?'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/wheres-my-panama-hat/', 'title': 'Where’s my Panama hat?'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/a-company-in-panama-is-very-aspirational/', 'title': 'A company in Panama is very aspirational'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/words-that-will-pass-into-legend-3/', 'title': 'We’re doing some family planning'}
{'date': '2016-02-29', 'url': 'https://daphnecaruanagalizia.com/2016/02/words-that-will-pass-into-legend-2/', 'title': 'It’s a free country and I’m rich'}
https://daphnecaruanagalizia.com/2016/3
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/watchthe-brazil-tutorial/', 'title': 'WATCH/The Brazil tutorial'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/mrs-muscat-walks-pool-kaftan-hotel-atlantis-palm-dubai/', 'title': 'No. 4/Mrs Muscat walks down to the pool in her kaftan at the Hotel Atlantis the Palm in Dubai'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/look-idiots-ministers-finance-justice-social-policy/', 'title': 'Look at these idiots: the Ministers of Finance, Justice and Social Policy'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/curtaingate-slave-labour-rates-prison-sweatshop/', 'title': 'CURTAINGATE: slave labour rates in prison sweatshop'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/royal-couple-return-desert/', 'title': 'The royal couple on their return from the desert'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/woss-holitay-dyirr-woss-trensitt/', 'title': '“I woss on holitay, my dyirr. I woss in trensitt.”'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/slave-labour-normal-dubai-dear/', 'title': '“Slave labour is normal in Dubai, my dyirrrr.”'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/finance-minister-tweets-lol/', 'title': 'Finance Minister tweets: “Lol”'}
{'date': '2016-03-31', 'url': 'https://daphnecaruanagalizia.com/2016/03/queen-off-head/', 'title': 'Our Queen. Off with her head.'}
{'date': '2016-03-30', 'url': 'https://daphnecaruanagalizia.com/2016/03/mrs-muscat-models-dresses-donated-mary-grace-pisani-fersani/', 'title': 'Mrs Muscat models dresses donated to her by Mary Grace Pisani of Fersani'}
{'date': '2016-03-30', 'url': 'https://daphnecaruanagalizia.com/2016/03/mary-grace-pisani-gives-dresses-michelle-muscats-pa/', 'title': 'Mary Grace Pisani gives dresses to Michelle Muscat’s PA too'}
https://daphnecaruanagalizia.com/2016/4
{'date': '2016-04-30', 'url': 'https://daphnecaruanagalizia.com/2016/04/yes-not-house/', 'title': 'Yes, but it’s not his house, is it?'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/new-minister-gambling-remote-gaming-casinos/', 'title': 'The new Minister for Gambling, Remote Gaming and Casinos'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/new-labour-deputy-leader-dead-cert/', 'title': 'The new Labour deputy leader (after another sham election)'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/pass-me-the-cyanide/', 'title': 'Muscat cut a deal with Cardona to accommodate Mallia'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/theres-something-wrong-man-not-just-corruption/', 'title': 'There’s something VERY wrong with this man, and it’s not just corruption'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/can-get-worse-yes-can/', 'title': 'Can it get any worse? Yes, it can.'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/theyve-already-got-news-muscat-mizzi-mexico/', 'title': 'They’ve already got the news about Muscat and Mizzi in Mexico'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/sleaze-corruption-looks-like/', 'title': 'The faces of corruption and sleaze'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/blessed-are-the-brainless/', 'title': 'Blessed are the brainless'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/hes-got-serkin-now-needs-pastizz/', 'title': 'He’s got a serkin. Now all he needs is a pastizz.'}
{'date': '2016-04-29', 'url': 'https://daphnecaruanagalizia.com/2016/04/president-malta-institute-accountants-emails-members/', 'title': 'President of Malta Institute of Accountants emails all members'}
https://daphnecaruanagalizia.com/2016/5
{'date': '2016-05-31', 'url': 'https://daphnecaruanagalizia.com/2016/05/hospital-privatisation-corruption-scandal-john-dalli-negotiates-subcontractors-dubaikeith-schembri-pledges-business-work-go/', 'title': 'No. 2/HOSPITAL PRIVATISATION SCANDAL: John Dalli deals with subcontractors in Dubai ahead of tender/Keith Schembri pledges business to those who work with front man Ram Tumuluri'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/panama-company-konrad-mizzis-240000-year-consultancy-fees/', 'title': 'Panama company: Konrad Mizzi’s $240,000 a year in “consultancy fees”'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/bleeding-people-dry-fill-pockets/', 'title': 'Bleeding people dry to fill their pockets'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/mayor-zurrieq-total-disgrace/', 'title': 'The mayor of Zurrieq is a total disgrace'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/benefit-hindsight-20-june-2013/', 'title': 'The benefit of hindsight: 20 June 2013 and a Department of Information press release'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/hillmanschembri-scandal-prime-ministers-office-gives-allied-newspapers/', 'title': 'Hillman/Schembri scandal: Prime Minister’s Office gives Allied Newspapers €800,000 tender for EU Presidency “marketing and communications”'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/phyllis-muscat-lunches-prime-minister-transport-authority-chairman-gave-daughter-job-london/', 'title': 'Phyllis Muscat lunches with Prime Minister and Transport Authority chairman who gave her daughter a job in London'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/saturday-night-glenn-bedingfield-pama-kentucky-fried-chicken-mrs-muscat/', 'title': 'Saturday night: Glenn Bedingfield at Pama Kentucky Fried Chicken with Mrs Muscat'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/promoting-money-justification-everything-disgusting-political-creed/', 'title': '“Promoting money as the justification for everything is a disgusting political creed”'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/sunday-times-leading-article/', 'title': 'The Sunday Times leading article: THE PRESS UNDER SIEGE'}
{'date': '2016-05-30', 'url': 'https://daphnecaruanagalizia.com/2016/05/hope-people-understand-threatening-implications-behaviour/', 'title': 'I hope people understand the threatening implications – for them – of this behaviour'}
https://daphnecaruanagalizia.com/2016/6
{'date': '2016-06-30', 'url': 'https://daphnecaruanagalizia.com/2016/06/daily-show-trevor-noah/', 'title': 'The best comedy has a proper message'}
{'date': '2016-06-29', 'url': 'https://daphnecaruanagalizia.com/2016/06/looks-like-nigel-farage-boris-johnson-will-soon-new-border-control/', 'title': 'Looks like Nigel Farage and Boris Johnson will soon have a new border to control'}
{'date': '2016-06-29', 'url': 'https://daphnecaruanagalizia.com/2016/06/evening-see-no-way-back-brexit-vote-no-time-wishful-thinking-rather-grasp-reality-angela-merkel/', 'title': '“As of this evening, I see no way back from the Brexit vote. This is no time for wishful thinking, but rather to grasp reality” – Angela Merkel'}
{'date': '2016-06-29', 'url': 'https://daphnecaruanagalizia.com/2016/06/richard-questcnn-nigel-farage/', 'title': 'Richard Quest/CNN with Nigel Farage'}
{'date': '2016-06-29', 'url': 'https://daphnecaruanagalizia.com/2016/06/sort-news-reporting-created-anti-eu-sentiment-among-english/', 'title': 'This is the sort of “news reporting” that created anti-EU sentiment among the English'}
{'date': '2016-06-29', 'url': 'https://daphnecaruanagalizia.com/2016/06/jeremy-corbyn-loses-confidence-vote-says-wont-resign/', 'title': 'Jeremy Corbyn loses confidence vote – says he won’t resign'}
{'date': '2016-06-28', 'url': 'https://daphnecaruanagalizia.com/2016/06/bitter-twisted-simple-simon-just-doesnt-get/', 'title': '“Bitter and twisted Simple Simon just doesn’t get it”'}
{'date': '2016-06-28', 'url': 'https://daphnecaruanagalizia.com/2016/06/usual-joey-no-mates-scenario/', 'title': 'The usual Joey-No-Mates scenario'}
{'date': '2016-06-28', 'url': 'https://daphnecaruanagalizia.com/2016/06/83546/', 'title': 'Mario ‘Stasi University of East Berlin’ Vella to be new governor of the Central Bank'}
{'date': '2016-06-28', 'url': 'https://daphnecaruanagalizia.com/2016/06/superstitious-mediterranean-peasant-makes-evil-eye-gesture-brussels/', 'title': 'Superstitious Mediterranean peasant makes ‘evil eye’ gesture in Brussels'}
{'date': '2016-06-28', 'url': 'https://daphnecaruanagalizia.com/2016/06/havent-woken-fact-nigel-farage-proto-fascist/', 'title': 'And for those of you who haven’t woken up to the fact that Nigel Farage is a proto-fascist'}
https://daphnecaruanagalizia.com/2016/7
{'date': '2016-07-31', 'url': 'https://daphnecaruanagalizia.com/2016/07/neville-gafa-reported-police-corruption-involving-libyan-medical-visas-close-associate-konrad-mizzi-keith-schembri-joseph-muscat/', 'title': 'Neville Gafa, who has been reported to the police for corruption involving Libyan medical visas, is a close associate of Konrad Mizzi, Keith Schembri and Joseph Muscat'}
{'date': '2016-07-31', 'url': 'https://daphnecaruanagalizia.com/2016/07/konrad-mizzi-keith-schembri-flew-malta-together-yesterday-evening/', 'title': 'UPDATED/Konrad Mizzi and Keith Schembri flew out of Malta together yesterday evening'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/no-longer-numbers-photographs-journalists-taken-away-turkish-police/', 'title': 'They are no longer numbers: photographs of journalists being taken away by the Turkish police'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/still-doggedly-uploading-pictures-sadly-still-shelf-canaries/', 'title': 'Still doggedly uploading pictures of himself, but sadly, still on the shelf with his 425 canaries'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/sort-thing-hes-angling-asked-not-hes-asked/', 'title': 'This is the sort of thing he does when he’s ANGLING to be asked, and not when he’s been asked'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/put-girlfriend-state-payroll-get-fight-battles/', 'title': 'Put your girlfriend on the state payroll and then get her to fight your battles'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/television-maltas-new-chief-executive-officer-another-one-add-freak-show/', 'title': 'Television Malta’s new chief executive officer – another one to add to the freak show of Maltese public life'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/84260/', 'title': 'MI5 warns of dangers in allowing Chinese involvement in Britain’s infrastructure'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/new-ceo-maltas-public-service-broadcaster-tvm/', 'title': 'The new CEO of Malta’s public service broadcaster, TVM'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/corrupt-cabinet-minister-corrupt-government-envoy-pr-push-paola-feast/', 'title': 'Corrupt cabinet minister and corrupt government envoy in PR push at Paola feast'}
{'date': '2016-07-30', 'url': 'https://daphnecaruanagalizia.com/2016/07/slice-bacon-mentality-brings-us/', 'title': 'The ‘slice of bacon’ mentality that brings us down'}
https://daphnecaruanagalizia.com/2016/8
{'date': '2016-08-24', 'url': 'https://daphnecaruanagalizia.com/2016/08/know-konrad-mizzi-still-energy-minister/', 'title': 'We all know that Konrad Mizzi is still Energy Minister'}
{'date': '2016-08-24', 'url': 'https://daphnecaruanagalizia.com/2016/08/malta-independent-publishes-viber-messages-libyan-middleman-neville-gafa/', 'title': 'The Malta Independent publishes Viber messages between Libyan middleman and Neville Gafa'}
{'date': '2016-08-24', 'url': 'https://daphnecaruanagalizia.com/2016/08/john-bundy-joseph-muscat-start-bromance-may-2009/', 'title': 'John Bundy and Joseph Muscat: the start of the bromance in May 2009'}
{'date': '2016-08-24', 'url': 'https://daphnecaruanagalizia.com/2016/08/instead-planting-trees-talk-afforestation/', 'title': 'Instead of planting trees, they talk about AFFORESTATION'}
{'date': '2016-08-23', 'url': 'https://daphnecaruanagalizia.com/2016/08/politician-jailed-britain-claiming-lived-one-address-lived-another-one/', 'title': 'Politician jailed in Britain for claiming he lived at one address when he lived at another'}
{'date': '2016-08-23', 'url': 'https://daphnecaruanagalizia.com/2016/08/sai-mizzi-liangs-contract-expires-friday/', 'title': 'Sai Mizzi Liang’s contract expires on Friday'}
{'date': '2016-08-23', 'url': 'https://daphnecaruanagalizia.com/2016/08/call-applications-post-lands-authority-ceo-opens-19th-august-closes-26th-august/', 'title': 'Call for applications for post of Lands Authority CEO opens on 19th August and closes on 29th August'}
{'date': '2016-08-23', 'url': 'https://daphnecaruanagalizia.com/2016/08/yes-ceo-national-broadcaster/', 'title': 'Yes, this is the CEO of the national broadcaster'}
{'date': '2016-08-23', 'url': 'https://daphnecaruanagalizia.com/2016/08/michael-sandel-lost-art-democratic-debate/', 'title': 'Michael Sandel: The lost art of democratic debate'}
{'date': '2016-08-22', 'url': 'https://daphnecaruanagalizia.com/2016/08/franciscan-nuns-fort-cambridge-bonds/', 'title': 'UPDATED/The Franciscan nuns and Fort Cambridge bonds'}
{'date': '2016-08-22', 'url': 'https://daphnecaruanagalizia.com/2016/08/now-tvm-axed-salvu-mallias-show/', 'title': 'Now TVM has axed Salvu Mallia’s show'}
https://daphnecaruanagalizia.com/2016/9
{'date': '2016-09-30', 'url': 'https://daphnecaruanagalizia.com/2016/09/breakingeuropean-court-auditors-candidate-rejected-involvement-cocaine-cover-made-judge-maltas-courts-justice/', 'title': 'BREAKING/European Court of Auditors candidate rejected for involvement in cocaine cover-up to be made a judge in Malta’s Courts of Justice'}
{'date': '2016-09-30', 'url': 'https://daphnecaruanagalizia.com/2016/09/karl-stagno-navarra-busy-brown-nosing-employers-labour-skip/', 'title': 'Karl Stagno Navarra: busy brown-nosing his employers in the Labour skip'}
{'date': '2016-09-30', 'url': 'https://daphnecaruanagalizia.com/2016/09/leo-brincat-insult-european-court-auditors/', 'title': 'Leo Brincat – an insult to the European Court of Auditors'}
{'date': '2016-09-30', 'url': 'https://daphnecaruanagalizia.com/2016/09/tvms-new-schedule-includes-show-hosted-government-appointed-deputy-chairman/', 'title': 'TVM’s new schedule includes show hosted by its own government-appointed deputy chairman'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/keith-schembri-busy-tweeting-retweeting/', 'title': 'Keith Schembri has been busy tweeting and retweeting'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/right-protest-integral-part-freedom-expression-magistrate-police/', 'title': '“The right to protest is an integral part of freedom of expression” – judge to the police'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/malta-now-famous-saigon/', 'title': 'Malta: now famous in Saigon'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/komori-confirms-sales-go-official-distributor-kasco/', 'title': 'Komori confirms that all sales go through its official distributor, Kasco'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/people-malta-elect-bad-characters-dont-understand/', 'title': 'People in Malta elect bad characters because they don’t understand this'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/language-warning-david-thake-speaks-doris/', 'title': 'Language warning: David Thake speaks to Doris'}
{'date': '2016-09-29', 'url': 'https://daphnecaruanagalizia.com/2016/09/bank-valletta-run-like-bank-trough-labour-government/', 'title': 'Is the Bank of Valletta being run like a bank or a trough for the Labour government?'}
https://daphnecaruanagalizia.com/2016/10
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/bluestone-special-situation-4-ltd-cover-mysterious-people-government-signed-hospitals/', 'title': 'Bluestone Special Situation 4 Ltd: the cover for the mysterious people to whom the government signed over the hospitals'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/konrad-mizziram-tumuluri-side-letter-agreement-leaked-website/', 'title': 'Konrad Mizzi/Ram Tumuluri “side letter” agreement obtained by this website'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/government-makes-e310-5-million-sale-maltese-citizenship-nobody-knows-money/', 'title': 'Government makes €310.5 million from sale of Maltese citizenship, and nobody knows where the money is'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/nice-look-member-parliament/', 'title': 'Nice look for a member of parliament'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/diesel-smuggling-drug-trafficking-car-bombs-shootings/', 'title': 'UPDATE 2/Diesel-smuggling, drug-trafficking, car bombs and shootings'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/gozo-minister-likes-fairytales-happy-ending/', 'title': 'The Gozo Minister likes his fairytales to have a happy ending'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/man-murdered-car-bomb-explosion-owner-soap-sponge-ltd/', 'title': 'Man murdered in car bomb explosion is owner of defunct Soap & Sponge Ltd; shares in subsequent company S & S Bathrooms Ltd listed in his daughter’s name'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/can-police-officers-less-confidence-inspiring/', 'title': 'Can these police officers be less confidence-inspiring?'}
{'date': '2016-10-31', 'url': 'https://daphnecaruanagalizia.com/2016/10/goes-another-smuggler-imagine/', 'title': 'Car bomb explosion victim named as John Camilleri k/a Giovanni tas-Sapun'}
{'date': '2016-10-30', 'url': 'https://daphnecaruanagalizia.com/2016/10/prime-ministers-aide-knowingly-lies-semi-literate-audience/', 'title': 'Prime Minister’s aide knowingly lies to semi-literate audience'}
{'date': '2016-10-30', 'url': 'https://daphnecaruanagalizia.com/2016/10/not-since-plague-1813-definitely-since-world-war-ii/', 'title': 'Not since the plague of 1813, but definitely since World War II'}
https://daphnecaruanagalizia.com/2016/11
{'date': '2016-11-28', 'url': 'https://daphnecaruanagalizia.com/2016/11/mummy-told-wear-vest-overdid/', 'title': 'Mummy told him to wear a vest – but he overdid it'}
{'date': '2016-11-25', 'url': 'https://daphnecaruanagalizia.com/2016/11/muscat-wont-linked-failure-dispatches-ministers-face-music-instead/', 'title': 'Muscat won’t be linked to failure – dispatches ministers to face the music instead'}
{'date': '2016-11-25', 'url': 'https://daphnecaruanagalizia.com/2016/11/constitutional-court-judgement-two-seats-nationalists-labour-gets-keep-two/', 'title': 'Constitutional Court judgement: two seats to the Nationalists, but Labour gets to keep its two'}
{'date': '2016-11-24', 'url': 'https://daphnecaruanagalizia.com/2016/11/say-nothing-hide-behave-though/', 'title': 'They say they have nothing to hide but behave as though they do'}
{'date': '2016-11-24', 'url': 'https://daphnecaruanagalizia.com/2016/11/want-clean-paceville-start-removing-sex-clubs/', 'title': 'If they want to clean up Paceville, they should start by removing the sex clubs'}
{'date': '2016-11-24', 'url': 'https://daphnecaruanagalizia.com/2016/11/patronage-alert-government-ministers-not-look-jobs-people/', 'title': 'Patronage alert: Government ministers should not look for jobs for people'}
{'date': '2016-11-24', 'url': 'https://daphnecaruanagalizia.com/2016/11/prime-ministers-chief-staff-seeks-protection-publication-health-details/', 'title': 'Prime Minister’s chief of staff seeks protection against publication of health details'}
{'date': '2016-11-23', 'url': 'https://daphnecaruanagalizia.com/2016/11/almost-nobody-approves-judges-magistrates-political-backgrounds/', 'title': 'Almost nobody approves of judges and magistrates from political backgrounds'}
{'date': '2016-11-23', 'url': 'https://daphnecaruanagalizia.com/2016/11/prime-ministers-chief-staff-tweets-promotions-shop/', 'title': 'Prime Minister’s chief of staff tweets promotions for his shop'}
{'date': '2016-11-23', 'url': 'https://daphnecaruanagalizia.com/2016/11/justice-minister-asks-speaker-investigate-shadow/', 'title': 'Justice Minister asks the Speaker to investigate his shadow'}
{'date': '2016-11-23', 'url': 'https://daphnecaruanagalizia.com/2016/11/brexit-impasse-nutshell-comment/', 'title': 'The Brexit impasse: in a nutshell comment'}
https://daphnecaruanagalizia.com/2016/12
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/south-american-news-portal-says-john-dalli-gaddafi-millionssuggests-hijack-anything/', 'title': 'South American news portal says John Dalli is after Gaddafi millions/suggests ‘hijack’ was anything but'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/malta-2017-happy-new-year/', 'title': 'Malta in 2017 – and a happy New Year to you too'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/free-spending-government-asks-people-donate-private-property-social-projects/', 'title': 'Free-spending government asks for people to donate their private property for social projects'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/contemptible-scoundrels-play-idiotic-raise-money-cancer-meds-budgeting-government/', 'title': 'Contemptible scoundrels play at being idiotic to raise money for cancer meds that they should be budgeting for in government'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/ed-zl-parties-elena-angela-f-air-malta-nosedives-alitalia-goes-bust/', 'title': 'ED ZL parties with Elena and Angela F while Air Malta nosedives and Alitalia goes bust'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/janice-owen-cheque/', 'title': 'UPDATED WITH VIDEO/Janice, the Justice Minister and the cheque'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/sickeningly-stupid-ignorant-head-state-confused-thinks-shes-actually-first-lady/', 'title': 'Sickeningly stupid and ignorant: the head of state is confused, and thinks she’s actually the First Lady'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/mrs-preca-stop-self-aggrandising-poncing-charity-government-job/', 'title': 'Mrs Preca should stop her self-aggrandising poncing for ‘charity’ and the government should do its job'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/joseph-muscat-spent-e8-million-office-budget-year/', 'title': 'Joseph Muscat spent €8 million MORE than his office budget this year'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/small-minded-government-billboard-message-make-cringe/', 'title': 'A small-minded government billboard message to make you cringe'}
{'date': '2016-12-31', 'url': 'https://daphnecaruanagalizia.com/2016/12/minister-digital-economy-gambling-now-spamming-people-new-year-greetings/', 'title': 'The Minister for the Digital Economy and Gambling is now spamming people with New Year greetings'}
https://daphnecaruanagalizia.com/2017/1
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/chris-cardona-joe-gerada-probably-need-bit-laugh-bedtime-without-prostitute/', 'title': 'Chris Cardona and Joe Gerada probably need a bit of a laugh before bedtime (with or without a prostitute)'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/sadly-chris-cardona-consultant-weakest-link/', 'title': 'Sadly for Chris Cardona, his consultant is the weakest link'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/idiot-going-sue-knows-full-well-brothel-details-correct/', 'title': 'The drunken idiot is going to sue me when he knows full well that he was at the brothel and that all my details were correct'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/maltas-economy-minister-sinks-pits-tweets-queen-fake-news-hatred/', 'title': 'Malta’s Economy Minister sinks further into the pits: tweets that I am “queen of fake news and hatred”'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/shocked-disgusted-yes-also-loud-sound-mocking-laughter/', 'title': 'Shocked and disgusted, yes. But also loud with the sound of mocking laughter.'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/opposition-leader-parliament-police-commissioner-government-protecting-puppet/', 'title': 'Opposition leader in parliament: Police Commissioner is a government-protecting puppet'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/economy-ministers-brothel-consultant-tweeting-increasing-competitiveness/', 'title': 'The Economy Minister’s brothel consultant has been tweeting about increasing competitiveness'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/breaking-brothelgatethe-economy-minister-consultant-went-brothel-today/', 'title': 'BREAKING BROTHELGATE/The Economy Minister and his consultant went to the same brothel again today'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/economy-minister-chris-cardonas-german-brothel-threesome-joe-gerada-consultant-ministry/', 'title': 'Economy Minister Chris Cardona’s German brothel threesome was with Joe Gerada, a consultant to his Ministry'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/top-brothelgate-meme-far/', 'title': 'Top Brothelgate meme so far'}
{'date': '2017-01-31', 'url': 'https://daphnecaruanagalizia.com/2017/01/brothelgate-chris-cardona-germany/', 'title': 'BROTHELGATE: Why is Chris Cardona in Germany?'}
https://daphnecaruanagalizia.com/2017/2
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/panama-papers-documentary-broadcast-tonight-france/', 'title': 'Panama Papers documentary broadcast tonight in France'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/four-years-physical-psychological-damage-least-family-assets-looking-pretty/', 'title': 'Four years of physical and psychological damage: but at least his family assets are looking pretty'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/nerve-konrad-mizzi/', 'title': 'The nerve of Konrad Mizzi'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/ilbislu-joseph-pm-czechoslovakia-muffler-much-needed-ego-boost/', 'title': '“Ilbislu, Joseph”: PM in Czech Republic + Sweden + muffler for much-needed ego boost'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/tourism-minister-detaches-reality-floats-off/', 'title': 'Tourism Minister detaches himself from reality and floats off'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/labour-party-official-william-lewis-also-given-direct-order-mediterranean-conference-centre-works/', 'title': 'Labour Party official William Lewis also given direct order for Mediterranean Conference Centre works'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/carnival-village-labour-party-official-also-direct-order-previous-year/', 'title': 'Carnival Village: Labour Party official also had direct order for previous year'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/labour-party-official-given-direct-order-carnival-experience-project-marsa/', 'title': 'Labour Party official given direct order for ‘Carnival Experience’ project in Marsa'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/minister-economy-busting-gut-malta-ghajn-tuffieha-lady-friend/', 'title': 'The Minister for the Economy: busting a gut for Malta at Ghajn Tuffieha with a lady friend'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/government-lies-us-mrs-konrad-mizzi-yet/', 'title': 'The government lies to us about Mrs Konrad Mizzi. Yet again.'}
{'date': '2017-02-28', 'url': 'https://daphnecaruanagalizia.com/2017/02/arrogance-stupidity-false-sense-entitlement/', 'title': 'The arrogance of stupidity and a false sense of entitlement'}
https://daphnecaruanagalizia.com/2017/3
{'date': '2017-03-31', 'url': 'https://daphnecaruanagalizia.com/2017/03/muscat-gives-new-meaning-term-faking/', 'title': 'Muscat gives new meaning to the term ‘faking it’'}
{'date': '2017-03-31', 'url': 'https://daphnecaruanagalizia.com/2017/03/busuttil-muscat-theyre-exactly-height/', 'title': 'Busuttil and Muscat: they’re exactly the same height'}
{'date': '2017-03-31', 'url': 'https://daphnecaruanagalizia.com/2017/03/polish-mp-writes-european-commission-president-protest-drunkenness/', 'title': 'Polish MP writes to European Commission president to protest against his drunkenness'}
{'date': '2017-03-30', 'url': 'https://daphnecaruanagalizia.com/2017/03/muscat-makes-frantic-phone-calls-epp-sec-gen-begging-photographs/', 'title': 'Muscat makes “frantic phone calls” to EPP sec-gen, begging for photographs'}
{'date': '2017-03-30', 'url': 'https://daphnecaruanagalizia.com/2017/03/thats-sum-right-now/', 'title': 'That’s about the sum of it right now'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/liberal-progressive-wife-proper-place/', 'title': 'Liberal and progressive: with the wife in her proper place'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/cittadin-mobil-companies-panama/', 'title': 'From the ‘Cittadin Mobil’ to companies in Panama'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/i-think-meant-shirts-go/', 'title': 'I think they meant ‘shirts’, but there you go'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/labour-partys-electoral-campaign-war-chest-public-purse/', 'title': 'The Labour Party’s electoral campaign war-chest is the public purse'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/juncker-word-cardona-knows-find-pastizzi/', 'title': 'Juncker should have a word with Cardona, who knows where to find the pastizzi'}
{'date': '2017-03-29', 'url': 'https://daphnecaruanagalizia.com/2017/03/warped-men-need-take-pathological-obsession-nearest-psychiatrist/', 'title': 'All those warped men need to take their pathological obsession with me to the nearest psychiatrist'}
https://daphnecaruanagalizia.com/2017/4
{'date': '2017-04-30', 'url': 'https://daphnecaruanagalizia.com/2017/04/pilatus-bank-owner-falsely-claims-bank-branch-london/', 'title': 'Pilatus Bank says it is “flying the flag for Malta in London”'}
{'date': '2017-04-30', 'url': 'https://daphnecaruanagalizia.com/2017/04/attacking-pilatus-bank-whistleblowers-credibility-prime-minister-flies-home-private-jet-cyrus-engerer/', 'title': 'After attacking the Pilatus Bank whistleblower’s credibility, the Prime Minister flies home in a private jet with Cyrus Engerer'}
{'date': '2017-04-30', 'url': 'https://daphnecaruanagalizia.com/2017/04/party-politics-aside-not-good-feeling-prime-minister-bad-man/', 'title': 'Party politics aside, it’s not a good feeling when your prime minister is a bad man'}
{'date': '2017-04-30', 'url': 'https://daphnecaruanagalizia.com/2017/04/police-took-passport-report-filed-pilatus-bank-i-couldnt-fly-back-home-bury-mother/', 'title': '“The police took my passport after a report filed by Pilatus Bank, and I couldn’t fly back home to bury my mother”'}
{'date': '2017-04-29', 'url': 'https://daphnecaruanagalizia.com/2017/04/no-whistleblower-not-commit-fraud-pilatus-bank-filed-false-report/', 'title': 'No, the whistleblower did NOT commit fraud. Pilatus Bank filed a false report against her when she reported them to the police'}
{'date': '2017-04-29', 'url': 'https://daphnecaruanagalizia.com/2017/04/castille-gang-launches-assault-pilatus-whistleblower-protect-keith-schembri-joseph-muscat/', 'title': 'Castille criminal gang launches assault on Pilatus whistleblower to protect Keith Schembri and Joseph Muscat'}
{'date': '2017-04-29', 'url': 'https://daphnecaruanagalizia.com/2017/04/guest-post-responsible-joseph-muscat/', 'title': 'GUEST POST: You are all responsible for Joseph Muscat'}
{'date': '2017-04-29', 'url': 'https://daphnecaruanagalizia.com/2017/04/freedom-fighting-independent-journalist-breaks-lance-iranian-multi-millionaire-st-kitts-passport-prime-ministers-chief-staff/', 'title': 'Freedom-fighting “independent” “journalist” breaks lance for Iranian multi-millionaire with St Kitts passport and for Prime Minister’s chief of staff'}
{'date': '2017-04-28', 'url': 'https://daphnecaruanagalizia.com/2017/04/pilatus-bank-safe-kitchen/', 'title': 'Pilatus Bank: That safe in the kitchen'}
{'date': '2017-04-28', 'url': 'https://daphnecaruanagalizia.com/2017/04/muscats-reaction-whistleblower-testimony-news-people-will-laugh/', 'title': 'Muscat’s reaction to whistleblower testimony news: “People will laugh at you.”'}
{'date': '2017-04-28', 'url': 'https://daphnecaruanagalizia.com/2017/04/breakingpilatus-bank-whistleblower-testifies-inquiring-magistrate/', 'title': 'BREAKING/Pilatus Bank whistleblower testifies before inquiring magistrate'}
https://daphnecaruanagalizia.com/2017/5
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/simon-busuttil-remind-us-hes-normal-one-isnt/', 'title': 'All Simon Busuttil had to do was remind us that he’s normal, because the other one isn’t'}
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/skybet-joseph-muscat-lied-public/', 'title': 'Skybet: Joseph Muscat lied to the public'}
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/makes-want-start-queuing-7am-saturday-vote/', 'title': 'Makes you want to start queuing at 7am on Saturday to vote them out'}
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/marco-cremonas-open-letter-prime-minister/', 'title': 'Marco Cremona’s open letter to the Prime Minister'}
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/november-prime-ministers-chief-staff-instructed-henley-partners-threaten-ruin-financially-suing-london-court/', 'title': 'Why it was in November that the Prime Minister’s chief of staff instructed Henley & Partners to threaten to ruin me financially by suing me in a London court'}
{'date': '2017-05-31', 'url': 'https://daphnecaruanagalizia.com/2017/05/prime-minister-chief-staff-use-josephmuscat-com-addresses-deal-secretly-henley-partners-chairman-addresses-keith-joseph-order/', 'title': 'BREAKING/Prime Minister and chief of staff use @josephmuscat.com addresses to deal secretly with Henley & Partners chairman, who addresses them as “Keith and Joseph” (in that order)'}
{'date': '2017-05-30', 'url': 'https://daphnecaruanagalizia.com/2017/05/plan-double-decker-full-laburisti-touring-malta-9hrs-sound-u-xorb/', 'title': 'The Plan: a double-decker full of Laburisti, touring Malta with “9hrs sound u xorb”'}
{'date': '2017-05-30', 'url': 'https://daphnecaruanagalizia.com/2017/05/michael-briguglio-malta-not-sale/', 'title': 'Michael Briguglio: Malta is not for sale'}
{'date': '2017-05-30', 'url': 'https://daphnecaruanagalizia.com/2017/05/watch-dont-want/', 'title': 'WATCH: We Don’t Want You'}
{'date': '2017-05-30', 'url': 'https://daphnecaruanagalizia.com/2017/05/labours-middle-class-families-token-blacks-reflect-maltese-reality/', 'title': 'Labour’s “middle-class families” have token blacks…to reflect Maltese reality'}
{'date': '2017-05-30', 'url': 'https://daphnecaruanagalizia.com/2017/05/malta-survey-4630-respondents-labour-nationalists-neck-neck/', 'title': 'Malta Survey – 4630 respondents: Labour and Nationalists are neck and neck'}
https://daphnecaruanagalizia.com/2017/6
{'date': '2017-06-30', 'url': 'https://daphnecaruanagalizia.com/2017/06/95541/', 'title': 'The Financial Intelligence Analysis Unit: a grave situation in which two ‘non-compliant’ officials have been summarily removed'}
{'date': '2017-06-30', 'url': 'https://daphnecaruanagalizia.com/2017/06/not-comment-i-wish/', 'title': 'This is not my comment, but I wish it were'}
{'date': '2017-06-30', 'url': 'https://daphnecaruanagalizia.com/2017/06/obvious-rather-novel-proposition/', 'title': 'This should be obvious, rather than a novel proposition'}
{'date': '2017-06-30', 'url': 'https://daphnecaruanagalizia.com/2017/06/article-three-times-standard-length-weekend-read/', 'title': 'This article is three times the standard length, but you have all weekend to read it'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/adrian-delia-plan-leader-opposition-doesnt-seat-parliament/', 'title': 'How does Adrian Delia plan to be leader of the Opposition if he doesn’t have a seat in parliament?'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/got-away-will-get-away-now/', 'title': 'They got away with it then, and they will get away with it now'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/heres-proof-franco-debono-trying-way-adrian-delia/', 'title': 'Here’s the evidence that Franco Debono was trying for a way in through Adrian Delia'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/adrian-delia-stop-telling-us-thinks-nationalist-party-start-telling-us-thinks-government/', 'title': 'Adrian Delia should stop telling us what he thinks about the Nationalist Party and start telling us what he thinks about the government'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/adrian-delia-admits-last-time-anything-nationalist-party-17-now-47/', 'title': 'Adrian Delia admits that the last time he did anything for the Nationalist Party, he was 17. He is now 47.'}
{'date': '2017-06-29', 'url': 'https://daphnecaruanagalizia.com/2017/06/people-discussing-issue-though-delia-running-ceo-nationalist-party-not-leader-opposition/', 'title': 'People are discussing the issue as though Delia is running for CEO of the Nationalist Party, not Leader of the Opposition'}
{'date': '2017-06-27', 'url': 'https://daphnecaruanagalizia.com/2017/06/malta-sinks-one-place-world-press-freedom-index/', 'title': 'Malta sinks one place in the World Press Freedom Index'}
https://daphnecaruanagalizia.com/2017/7
{'date': '2017-07-07', 'url': 'https://daphnecaruanagalizia.com/2017/07/police-go-small-fry-protecting-gangland-sharks-auberge-de-castille/', 'title': 'The police go after the small fry while protecting the gangland sharks at the Auberge de Castille'}
{'date': '2017-07-07', 'url': 'https://daphnecaruanagalizia.com/2017/07/make-sound-like-countrys-economy-works-way-household-economy/', 'title': 'They make it sound like a country’s economy works in the same way as a household economy'}
{'date': '2017-07-05', 'url': 'https://daphnecaruanagalizia.com/2017/07/95547/', 'title': 'It was Nationalist governments, not Labour, which changed the lives of Maltese women permanently for the better'}
https://daphnecaruanagalizia.com/2017/8
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/what-they-said/', 'title': 'What they said'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/96571/', 'title': 'The Eve Bajada who paid the money into Adrian Delia’s Jersey account is the “Eve” who collected the money from the London prostitutes'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/wanted-vote-keith-schembri-now-want-vote-adrian-delia/', 'title': 'They wanted you to vote against Keith Schembri. Now they want you to vote for Adrian Delia.'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/godfrey-leone-ganado-subject-adrian-delia/', 'title': 'Godfrey Leone Ganado on the subject of Adrian Delia'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/younger-men-know-older-ones/', 'title': 'When younger men know more than older ones'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/adrian-delia-lied-journalists-documents-related-jersey-bank-account/', 'title': 'Adrian Delia has lied to journalists about the documents related to his Jersey bank account'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/nationalist-partys-ethics-committee-not-satisfied-adrian-delias-unclear-explanations/', 'title': 'The Nationalist Party’s Ethics Committee “was not satisfied” with Adrian Delia’s “unclear explanations”'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/malta-gone-mad-nationalist-party-led-former-money-launderer-prostitution-racket/', 'title': 'Malta gone mad: the Nationalist Party led by a former money-launderer for a prostitution racket'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/like-labour-mates-offshore-companies-adrian-delia-thinks-anti-establishment/', 'title': 'Like his Labour mates with their offshore companies, Adrian Delia thinks that he is anti-Establishment'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/lawyers-break-collegial-silence-speak-openly-adrian-delia-know-hes-shady/', 'title': 'Lawyers break collegial silence to speak openly against Adrian Delia – they know he’s shady'}
{'date': '2017-08-31', 'url': 'https://daphnecaruanagalizia.com/2017/08/proto-fascist-still/', 'title': 'That proto-fascist is still at it'}
https://daphnecaruanagalizia.com/2017/9
In [78]:
pipi = pd.DataFrame(allPostOfAllYears)
pipi.to_csv("allPosts.csv")
In [ ]:
Content source: barjacks/pythonrecherche
Similar notebooks: